Changeset 1390
- Timestamp:
- 11/23/05 21:40:04 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/new-admin/tests/othertests/templates.py
r1382 r1390 103 103 'basic-syntax30': (r"""{{ var|default_if_none:" endquote\" hah" }}""", {"var": None}, ' endquote" hah'), 104 104 105 106 105 ### IF TAG ################################################################ 107 106 'if-tag01': ("{% if foo %}yes{% else %}no{% endif %}", {"foo": True}, "yes"), … … 246 245 you 247 246 gentlemen. 248 """ ), 247 """), 248 249 249 # simple translation of a string delimited by ' 250 250 'i18n01': ("{% load i18n %}{% trans 'xxxyyyxxx' %}", {}, "xxxyyyxxx"),
