diff options
| author | James Bennett <ubernostrum@gmail.com> | 2010-03-03 08:34:31 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2010-03-03 08:34:31 +0000 |
| commit | 1f56ed7319a20f3508a6629d3bca83c523e9d4f3 (patch) | |
| tree | 765f73f4b5534b2f7b4f98a1e815c1934bf119fa /docs | |
| parent | 6edcd11aedc1dca4d67fdbe7478d40406dc88730 (diff) | |
Fixed #11883: Documented how to set a custom template name on a flatpage.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12667 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/flatpages.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/ref/contrib/flatpages.txt b/docs/ref/contrib/flatpages.txt index e0417bf748..1cecf23ac2 100644 --- a/docs/ref/contrib/flatpages.txt +++ b/docs/ref/contrib/flatpages.txt @@ -126,8 +126,12 @@ Flatpage templates ================== By default, flatpages are rendered via the template -:file:`flatpages/default.html`, but you can override that for a particular -flatpage. +:file:`flatpages/default.html`, but you can override that for a +particular flatpage: in the admin, a collapsed fieldset titled +"Advanced options" (clicking will expand it) contains a field for +specifying a template name. If you're creating a flat page via the +Python API you can simply set the template name as the field +``template_name`` on the ``FlatPage`` object. Creating the :file:`flatpages/default.html` template is your responsibility; in your template directory, just create a :file:`flatpages` directory |
