From a1723aba3bf56a5551d04d1e5728d6f2fc7fd0c0 Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Fri, 19 Oct 2007 03:20:15 +0000 Subject: [PATCH] Fixed #5747 -- Added missing file extension in flatpage documentation. Thanks, Rob Hudson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6531 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/flatpages.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/flatpages.txt b/docs/flatpages.txt index 1422f16b6b..d082090689 100644 --- a/docs/flatpages.txt +++ b/docs/flatpages.txt @@ -48,7 +48,7 @@ with the given URL with a site ID that corresponds to the SITE_ID_ setting. If it finds a match, it follows this algorithm: * If the flatpage has a custom template, it loads that template. Otherwise, - it loads the template ``flatpages/default``. + it loads the template ``flatpages/default.html``. * It passes that template a single context variable, ``flatpage``, which is the flatpage object. It uses RequestContext_ in rendering the template.