{% extends 'base.html' %} {% load i18n ska_tags %} {% block content %}

{% trans "Foo listing" %}

{% blocktrans %} Below you can see the list of URLs, divided into 3 categories: (1) Fail, (2) success, (3) success (class based) and (4) signed with template tag. Fail URLs obviously fail (401 Unauthorized). The other three should work. {% endblocktrans %}

{% for item in items%} {% endfor %}
{% trans "Fail" %} {% trans "Success (signed with decorator, decorator validation)" %} {% trans "Success (signed with decorator, class based decorator validation)" %} {% trans "Success (signed with templatetag)" %}
{{ item }} {{ item }} {{ item }} {{ item }}
{% endblock content %}