Ticket #3781: add_ons.diff
File add_ons.diff, 1.1 KB (added by , 18 years ago) |
---|
-
docs/add_ons.txt
9 9 This code lives in ``django/contrib`` in the Django distribution. Here's a 10 10 rundown of the packages in ``contrib``: 11 11 12 .. admonition:: Note 13 14 Remember that to use these, you'll need to add the package (django.contrib.whatever) 15 to the ``INSTALLED_APPS`` in your ``settings.py`` file, and re-run ``manage.py syncdb``. 16 12 17 .. _"batteries included" philosophy: http://docs.python.org/tut/node12.html#batteries-included 13 18 14 19 admin … … 157 162 * Markdown 158 163 * ReST (ReStructured Text) 159 164 160 For documentation, read the source code in django/contrib/markup/templatetags/markup.py. 165 To activate these filters, add ``'django.contrib.markup'`` to your ``INSTALLED_APPS`` 166 setting. Once you've done that, use ``{% load markup %}`` in a template, and you'll 167 have access to these filters. For more documentation, read the source code in 168 django/contrib/markup/templatetags/markup.py. 161 169 162 170 redirects 163 171 =========