Changeset 7807 for django/trunk/django/contrib/flatpages/models.py
- Timestamp:
- 06/30/08 08:05:47 (3 months ago)
- Files:
-
- django/trunk/django/contrib/flatpages/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/flatpages/models.py
r7651 r7807 9 9 help_text=_("Example: '/about/contact/'. Make sure to have leading and trailing slashes.")) 10 10 title = models.CharField(_('title'), max_length=200) 11 content = models.TextField(_('content') )11 content = models.TextField(_('content'), blank=True) 12 12 enable_comments = models.BooleanField(_('enable comments')) 13 13 template_name = models.CharField(_('template name'), max_length=70, blank=True,
