flatpages.txt 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. =================
  2. The flatpages app
  3. =================
  4. .. module:: django.contrib.flatpages
  5. :synopsis: A framework for managing simple ?flat? HTML content in a database.
  6. Django comes with an optional "flatpages" application. It lets you store simple
  7. "flat" HTML content in a database and handles the management for you via
  8. Django's admin interface and a Python API.
  9. A flatpage is a simple object with a URL, title and content. Use it for
  10. one-off, special-case pages, such as "About" or "Privacy Policy" pages, that
  11. you want to store in a database but for which you don't want to develop a
  12. custom Django application.
  13. A flatpage can use a custom template or a default, systemwide flatpage
  14. template. It can be associated with one, or multiple, sites.
  15. The content field may optionally be left blank if you prefer to put your
  16. content in a custom template.
  17. Here are some examples of flatpages on Django-powered sites:
  18. * http://www.lawrence.com/about/contact/
  19. * http://www2.ljworld.com/site/rules/
  20. Installation
  21. ============
  22. To install the flatpages app, follow these steps:
  23. 1. Install the :mod:`sites framework <django.contrib.sites>` by adding
  24. ``'django.contrib.sites'`` to your :setting:`INSTALLED_APPS` setting,
  25. if it's not already in there.
  26. Also make sure you've correctly set :setting:`SITE_ID` to the ID of the
  27. site the settings file represents. This will usually be ``1`` (i.e.
  28. ``SITE_ID = 1``, but if you're using the sites framework to manage
  29. multiple sites, it could be the ID of a different site.
  30. 2. Add ``'django.contrib.flatpages'`` to your :setting:`INSTALLED_APPS`
  31. setting.
  32. 3. Add ``'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware'``
  33. to your :setting:`MIDDLEWARE_CLASSES` setting.
  34. 4. Run the command :djadmin:`manage.py syncdb <syncdb>`.
  35. .. currentmodule:: django.contrib.flatpages.middleware
  36. How it works
  37. ============
  38. ``manage.py syncdb`` creates two tables in your database: ``django_flatpage``
  39. and ``django_flatpage_sites``. ``django_flatpage`` is a simple lookup table
  40. that simply maps a URL to a title and bunch of text content.
  41. ``django_flatpage_sites`` associates a flatpage with a site.
  42. The :class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware`
  43. does all of the work.
  44. .. class:: FlatpageFallbackMiddleware
  45. Each time any Django application raises a 404 error, this middleware
  46. checks the flatpages database for the requested URL as a last resort.
  47. Specifically, it checks for a flatpage with the given URL with a site ID
  48. that corresponds to the :setting:`SITE_ID` setting.
  49. If it finds a match, it follows this algorithm:
  50. * If the flatpage has a custom template, it loads that template.
  51. Otherwise, it loads the template :file:`flatpages/default.html`.
  52. * It passes that template a single context variable, ``flatpage``,
  53. which is the flatpage object. It uses
  54. :class:`~django.template.RequestContext` in rendering the
  55. template.
  56. .. versionchanged:: 1.4
  57. The middleware will only add a trailing slash and redirect (by looking
  58. at the :setting:`APPEND_SLASH` setting) if the resulting URL refers to
  59. a valid flatpage. Previously requesting a non-existent flatpage
  60. would redirect to the same URL with an apppended slash first and
  61. subsequently raise a 404.
  62. .. versionchanged:: 1.4
  63. Redirects by the middleware are permanent (301 status code) instead of
  64. temporary (302) to match behavior of the
  65. :class:`~django.middleware.common.CommonMiddleware`.
  66. If it doesn't find a match, the request continues to be processed as usual.
  67. The middleware only gets activated for 404s -- not for 500s or responses
  68. of any other status code.
  69. .. admonition:: Flatpages will not apply view middleware
  70. Because the ``FlatpageFallbackMiddleware`` is applied only after
  71. URL resolution has failed and produced a 404, the response it
  72. returns will not apply any :ref:`view middleware <view-middleware>`
  73. methods. Only requests which are successfully routed to a view via
  74. normal URL resolution apply view middleware.
  75. Note that the order of :setting:`MIDDLEWARE_CLASSES` matters. Generally, you
  76. can put
  77. :class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware` at the
  78. end of the list. This means it will run first when processing the response, and
  79. ensures that any other response-processing middlewares see the real flatpage
  80. response rather than the 404.
  81. For more on middleware, read the :doc:`middleware docs
  82. </topics/http/middleware>`.
  83. .. admonition:: Ensure that your 404 template works
  84. Note that the
  85. :class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware`
  86. only steps in once another view has successfully produced a 404 response.
  87. If another view or middleware class attempts to produce a 404 but ends up
  88. raising an exception instead (such as a ``TemplateDoesNotExist``
  89. exception if your site does not have an appropriate template to
  90. use for HTTP 404 responses), the response will become an HTTP 500
  91. ("Internal Server Error") and the
  92. :class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware`
  93. will not attempt to serve a flat page.
  94. .. currentmodule:: django.contrib.flatpages.models
  95. How to add, change and delete flatpages
  96. =======================================
  97. Via the admin interface
  98. -----------------------
  99. If you've activated the automatic Django admin interface, you should see a
  100. "Flatpages" section on the admin index page. Edit flatpages as you edit any
  101. other object in the system.
  102. Via the Python API
  103. ------------------
  104. .. class:: FlatPage
  105. Flatpages are represented by a standard
  106. :doc:`Django model </topics/db/models>`,
  107. which lives in `django/contrib/flatpages/models.py`_. You can access
  108. flatpage objects via the :doc:`Django database API </topics/db/queries>`.
  109. .. _django/contrib/flatpages/models.py: https://github.com/django/django/blob/master/django/contrib/flatpages/models.py
  110. .. currentmodule:: django.contrib.flatpages
  111. .. admonition:: Check for duplicate flatpage URLs.
  112. If you add or modify flatpages via your own code, you will likely want to
  113. check for duplicate flatpage URLs within the same site. The flatpage form
  114. used in the admin performs this validation check, and can be imported from
  115. :class:`django.contrib.flatpages.forms.FlatPageForm` and used in your own
  116. views.
  117. Flatpage templates
  118. ==================
  119. By default, flatpages are rendered via the template
  120. :file:`flatpages/default.html`, but you can override that for a
  121. particular flatpage: in the admin, a collapsed fieldset titled
  122. "Advanced options" (clicking will expand it) contains a field for
  123. specifying a template name. If you're creating a flat page via the
  124. Python API you can simply set the template name as the field
  125. ``template_name`` on the ``FlatPage`` object.
  126. Creating the :file:`flatpages/default.html` template is your responsibility;
  127. in your template directory, just create a :file:`flatpages` directory
  128. containing a file :file:`default.html`.
  129. Flatpage templates are passed a single context variable, ``flatpage``,
  130. which is the flatpage object.
  131. Here's a sample :file:`flatpages/default.html` template:
  132. .. code-block:: html+django
  133. <!DOCTYPE html>
  134. <html>
  135. <head>
  136. <title>{{ flatpage.title }}</title>
  137. </head>
  138. <body>
  139. {{ flatpage.content }}
  140. </body>
  141. </html>
  142. Since you're already entering raw HTML into the admin page for a flatpage,
  143. both ``flatpage.title`` and ``flatpage.content`` are marked as **not**
  144. requiring :ref:`automatic HTML escaping <automatic-html-escaping>` in the
  145. template.
  146. Getting a list of :class:`~django.contrib.flatpages.models.FlatPage` objects in your templates
  147. ==============================================================================================
  148. .. versionadded:: 1.3
  149. The flatpages app provides a template tag that allows you to iterate
  150. over all of the available flatpages on the :ref:`current site
  151. <hooking-into-current-site-from-views>`.
  152. Like all custom template tags, you'll need to :ref:`load its custom
  153. tag library <loading-custom-template-libraries>` before you can use
  154. it. After loading the library, you can retrieve all current flatpages
  155. via the :ttag:`get_flatpages` tag:
  156. .. code-block:: html+django
  157. {% load flatpages %}
  158. {% get_flatpages as flatpages %}
  159. <ul>
  160. {% for page in flatpages %}
  161. <li><a href="{{ page.url }}">{{ page.title }}</a></li>
  162. {% endfor %}
  163. </ul>
  164. .. templatetag:: get_flatpages
  165. Displaying ``registration_required`` flatpages
  166. ----------------------------------------------
  167. By default, the :ttag:`get_flatpages` templatetag will only show
  168. flatpages that are marked ``registration_required = False``. If you
  169. want to display registration-protected flatpages, you need to specify
  170. an authenticated user using a``for`` clause.
  171. For example:
  172. .. code-block:: html+django
  173. {% get_flatpages for someuser as about_pages %}
  174. If you provide an anonymous user, :ttag:`get_flatpages` will behave
  175. the same as if you hadn't provided a user -- i.e., it will only show you
  176. public flatpages.
  177. Limiting flatpages by base URL
  178. ------------------------------
  179. An optional argument, ``starts_with``, can be applied to limit the
  180. returned pages to those beginning with a particular base URL. This
  181. argument may be passed as a string, or as a variable to be resolved
  182. from the context.
  183. For example:
  184. .. code-block:: html+django
  185. {% get_flatpages '/about/' as about_pages %}
  186. {% get_flatpages about_prefix as about_pages %}
  187. {% get_flatpages '/about/' for someuser as about_pages %}