Skip to content

Instantly share code, notes, and snippets.

@lorne-luo
Last active February 21, 2018 22:10
Show Gist options
  • Save lorne-luo/cb52fa5f95bc277fa18d1f80988cd965 to your computer and use it in GitHub Desktop.
Save lorne-luo/cb52fa5f95bc277fa18d1f80988cd965 to your computer and use it in GitHub Desktop.
Django forms
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