Django

Code

Changeset 3093

Show
Ignore:
Timestamp:
06/06/06 21:38:37 (2 years ago)
Author:
adrian
Message:

Fixed #2096 -- Fixed small error in docs/templates_python.txt. Thanks, ramiro

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/templates_python.txt

    r3061 r3093  
    503503 
    504504First, create a ``templatetags`` package in the appropriate Django app's 
    505 package. It should be on the same level as ``models``, ``views.py``, etc. For 
     505package. It should be on the same level as ``models.py``, ``views.py``, etc. For 
    506506example:: 
    507507 
    508508    polls/ 
    509         models/ 
     509        models.py 
    510510        templatetags/ 
     511        views.py 
    511512 
    512513Add two files to the ``templatetags`` package: an ``__init__.py`` file and a