Changeset 55 for trunk/blog/forms.py
- Timestamp:
- 03/02/08 19:47:45 (10 months ago)
- Files:
-
- trunk/blog/forms.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/blog/forms.py
r33 r55 35 35 class Meta: 36 36 model = Comment 37 exclude = ('entry', 'is_active')37 fields = ('name', 'email', 'url', 'description') 38 38 39 39 … … 45 45 class Meta: 46 46 model = TrackBack 47 exclude = ('is_active',)47 fields = ('entry', 'blog_name', 'title', 'url', 'excerpt') 48 48 49 49 def clean(self):
