{% extends "base.html" %} {% load i18n %} {% block title %} {% if show_archived %} {% translate "Archived Questions" %} {% else %} {% translate "Questions" %} {% endif %} {% endblock %} {% block content %}
{% if show_archived %}
{% translate "Back to active questions" %}
{% else %} {% if perms.questionnaires.add_question %}
{% translate "Add question" %}
{% endif %}
{% translate "Show archived questions" %}
{% endif %}
{% endblock %}