{% extends 'base.html' %} {% block title %} Accept aups page {% endblock %} {% block content %}
{% if aups|length != 1 %}
{% for index in range(aups|length) %}
{{ index + 1 }}
{% if index != aups|length - 1 %}
{% endif %} {% endfor %}
{% endif %} {% for index in range(aups|length) %}

{{ aups[index].name }}

{{ aups[index].html|safe }}
{% if index != (aups|length - 1) %} CONTINUE {% else %} ACCEPT AUP{% if aups|length != 1 %}s{% endif %} {% endif %} {% if index != 0 %} BACK {% endif %}
{% endfor %}
{% endblock %}