Changeset 771
- Timestamp:
- 10/04/05 08:34:59 (3 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
r631 r771 268 268 from django.core.template import Context 269 269 import datetime 270 class TimeContext( template.Context):270 class TimeContext(Context): 271 271 def __init__(self, *args, **kwargs): 272 272 Context.__init__(self, *args, **kwargs)
