agdj/blog/forms.py
author Adam Gomaa <code@adam.gomaa.us>
Sun Feb 01 02:05:35 2009 -0500
changeset 417 41bb13fc4f7d
parent 270 82061e08541b
permissions -rw-r--r--
Move to a 2-column layout - comments on the right.
     1 from agdj.blog import *
     2 from agdj.blog import models
     3 from django import forms
     4 
     5 class PublicCommentForm(forms.ModelForm):
     6     class Meta:
     7         model = models.Comment
     8         fields = "name url text".split()
     9     name = forms.CharField(required=False)
    10     url = forms.URLField(required=False, label="URL")
    11     text = forms.CharField(widget=forms.Textarea, label="Comment")