Changeset 3093
- Timestamp:
- 06/06/06 21:38:37 (2 years ago)
- Files:
-
- django/trunk/docs/templates_python.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/templates_python.txt
r3061 r3093 503 503 504 504 First, create a ``templatetags`` package in the appropriate Django app's 505 package. It should be on the same level as ``models ``, ``views.py``, etc. For505 package. It should be on the same level as ``models.py``, ``views.py``, etc. For 506 506 example:: 507 507 508 508 polls/ 509 models /509 models.py 510 510 templatetags/ 511 views.py 511 512 512 513 Add two files to the ``templatetags`` package: an ``__init__.py`` file and a
