From 515ae9c1289d9bbe447e0dad196e8c35d9724804 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 27 Nov 2005 07:28:51 +0000 Subject: [PATCH] Fixed ReST error in docs/templates_python.txt. Thanks, EABinGA git-svn-id: http://code.djangoproject.com/svn/django/trunk@1450 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/templates_python.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/templates_python.txt b/docs/templates_python.txt index 790b580bd6..904844fa25 100644 --- a/docs/templates_python.txt +++ b/docs/templates_python.txt @@ -411,13 +411,12 @@ Although the Django template language comes with several default tags and filters, you might want to write your own. It's easy to do. First, create a ``templatetags`` package in the appropriate Django app's -package. It should be on the same level as ``models``, ``views``, etc. For +package. It should be on the same level as ``models``, ``views.py``, etc. For example:: polls/ models/ templatetags/ - views/ Add two files to the ``templatetags`` package: an ``__init__.py`` file and a file that will contain your custom tag/filter definitions. The name of the @@ -650,7 +649,7 @@ The ``tag()`` method takes two arguments: function as a string). As with filter registration, it is also possible to use this as a decorator, in -Python 2.4 and above: +Python 2.4 and above:: @register.tag(name="current_time") def do_current_time(parser, token):