{% extends "base.html" %} {% load i18n %} {% block content %}
    {% for category in categories %}
  1. {{ category }}
  2. {% endfor %}
    {% for category in categories %}
  1. {{ category.label }}

  2. {% for question in category.questions.all %}
    {% autoescape off %}{{ question.answer }}{% endautoescape %}
    {% trans "back to category" %} - {% trans "back to top" %} {% endfor %} {% endfor %}
{% endblock %}