diff options
Diffstat (limited to 'django/contrib/flatpages/models.py')
-rw-r--r-- | django/contrib/flatpages/models.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/django/contrib/flatpages/models.py b/django/contrib/flatpages/models.py index 67e1a30bac..b3cad733aa 100644 --- a/django/contrib/flatpages/models.py +++ b/django/contrib/flatpages/models.py @@ -13,7 +13,10 @@ class FlatPage(models.Model): title = models.CharField(_('title'), max_length=200) content = models.TextField(_('content'), blank=True) enable_comments = models.BooleanField(_('enable comments'), default=False) - template_name = models.CharField(_('template name'), max_length=70, blank=True, + template_name = models.CharField( + _('template name'), + max_length=70, + blank=True, help_text=_( "Example: 'flatpages/contact_page.html'. If this isn't provided, " "the system will use 'flatpages/default.html'." |