summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-07-09 22:35:08 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-07-09 22:35:08 +0000
commit9a588aa4b4f2717fa0c6eb4f200cf50b721d3d58 (patch)
tree655d49f29fdd534982928ea629207b4d22ecb1f9
parentc431ade5f5a98fca990a3996be7f7707a31df858 (diff)
downloaddjango-9a588aa4b4f2717fa0c6eb4f200cf50b721d3d58.tar.gz
Fixed #2317 -- Fixed help_text for FlatPage.template_name field to match magic-removal template names. Thanks, md@hudora.de
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3304 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/flatpages/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/flatpages/models.py b/django/contrib/flatpages/models.py
index 733706257c..bc2a392121 100644
--- a/django/contrib/flatpages/models.py
+++ b/django/contrib/flatpages/models.py
@@ -10,7 +10,7 @@ class FlatPage(models.Model):
content = models.TextField(_('content'))
enable_comments = models.BooleanField(_('enable comments'))
template_name = models.CharField(_('template name'), maxlength=70, blank=True,
- help_text=_("Example: 'flatpages/contact_page'. If this isn't provided, the system will use 'flatpages/default'."))
+ help_text=_("Example: 'flatpages/contact_page.html'. If this isn't provided, the system will use 'flatpages/default.html'."))
registration_required = models.BooleanField(_('registration required'), help_text=_("If this is checked, only logged-in users will be able to view the page."))
sites = models.ManyToManyField(Site)
class Meta: