Changeset 5667
- Timestamp:
- 07/12/07 08:23:11 (1 year ago)
- Files:
-
- django/trunk/docs/templates_python.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/templates_python.txt
r5600 r5667 675 675 an object to it's string value before being passed to your function:: 676 676 677 from django import template678 679 @ template.stringfilter677 from django.template.defaultfilters import stringfilter 678 679 @stringfilter 680 680 def lower(value): 681 681 return value.lower()
