Files
mayan-edms/apps/document_comments/forms.py
2011-05-01 16:13:34 -04:00

12 lines
259 B
Python

from django import forms
from django.contrib.comments.models import Comment
class CommentForm(forms.ModelForm):
"""
A standard model form to allow users to post a comment
"""
class Meta:
model = Comment
fields = ('comment',)