forms.py 323 B

123456789101112
  1. # Forms to be used for commenting in the blog app
  2. from django import forms
  3. class CommentForm(forms.Form):
  4. '''
  5. Use this to submit public comments
  6. '''
  7. author = forms.CharField(max_length=255)
  8. website = forms.CharField(max_length=255, required=False)
  9. content = forms.CharField(widget=forms.Textarea)