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

{% trans "Foo listing" %}

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

{% for item in items%} {% endfor %}
{% trans "Fail" %} {% trans "Success" %} {% trans "Success (class based)" %}
{{ item }} {{ item }} {{ item }}
{% endblock content %}