Last active
February 21, 2018 22:10
-
-
Save lorne-luo/cb52fa5f95bc277fa18d1f80988cd965 to your computer and use it in GitHub Desktop.
Django forms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django import forms | |
class ContactForm(forms.ModelForm): | |
message = forms.CharField(label='Message', | |
required=True, | |
widget=forms.Textarea(attrs={'placeholder': 'First name'}), | |
error_messages={'required': 'Please enter your message.'}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment