This makes the flatpages helptextmore MR-like Index: django/contrib/flatpages/models.py =================================================================== --- django/contrib/flatpages/models.py (revision 3302) +++ django/contrib/flatpages/models.py (working copy) @@ -10,7 +10,7 @@ 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'.")) 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: