Changeset 7836 for django/branches/gis/django/contrib/flatpages
- Timestamp:
- 07/04/08 15:16:22 (6 months ago)
- Files:
-
- django/branches/gis (modified) (1 prop)
- django/branches/gis/django/contrib/flatpages/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis
- Property svnmerge-integrated changed from /django/trunk:1-7767 to /django/trunk:1-7835
django/branches/gis/django/contrib/flatpages/models.py
r7768 r7836 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,
