{% extends "base.html" %} {% block title %}Your forms{% endblock %} {% block content %}

Here you can ask the admin to fill in your forms:

{% for form in forms | reverse %}

Form name: {{ form.title }}


{% for question in form.questions %}
Question: {{ question.content }}
Should the admin answer this question?
{% endfor %}
{% endfor %} {% endblock %}