Ticket #4539: testing.html

File testing.html, 300 bytes (added by permonik@…, 17 years ago)

Template used in example

Line 
1{% load i18n %}
2{% for spell in spells %}
3 {% blocktrans with spell.spell as spell and spell.wave as wave and spell.target as target and spell.caster as caster and spell.count as count%}
4 '{{spell}}', '{{wave}}', '{{target}}', '{{caster}}', '{{count}}'
5 {% endblocktrans %}
6{% endfor %}
Back to Top