{% extends "formunculous/base.html" %} {% load i18n widget_type %} {% block css %}{{ block.super }} {{ review_form.media }} {% endblock %} {% block js %}{{ block.super }} {% endblock %} {% block title %} {% trans "Reviewing" %} {{ ad.name }} {% trans " Submitted on " %} {{ app.submission_date|date:"D d M Y" }} {{ app.submission_date|time:"g:i A" }} {% endblock %} {% block content %}

Deleting the selected form cannot be undone. Are you sure you want to delete this form?

{% trans "Responses" %}

{% trans "Print" %}
{% if sub_apps %} {% for sub_app_group in sub_apps %}

{{ sub_app_group.sub_ad.name }}

{% for sub_app in sub_app_group.sub_apps %} {% endfor %} {% endfor %} {% endif %}
{% if perms.formunculous.can_delete_applications %} {% trans "Delete Form" %} {% endif %}
{% if fields %}

{% trans "Reviewer Fields" %}

{% if message %}
{{ message }}
{% endif %}
{% csrf_token %} {% if review_form.errors %}
{% trans "There are errors in your form, please correct them" %}
{% endif %}
{% for field in fields %} {% if field.field.is_hidden %} {{ field.field }} {% else %} {% ifchanged field.group %} {% if field.group %}
{% else %} {% if not forloop.first %}
{% endif %} {% endif %} {% endifchanged %}
{{ field.field.errors }}
{% widget_type field.field.field.widget as widget %} {% ifequal widget "CheckboxInput" %} {{ field.field }} {% if field.field.label %} {% endif %} {% else %} {% if field.field.label %} {{ field.field.label_tag }} {% endif %} {{ field.field }} {% endifequal %}
{% if field.field.help_text %}
{{ field.field.help_text }}
{% endif %}
{% if forloop.last and field.group %}
{% endif %} {{ field.post_text }} {% endif %} {% endfor %}
{% endif %}

{% trans "Comments" %}

{% load comments %} {% get_comment_count for app as comment_count %} {% get_comment_list for app as comments %}
{{ comment_count }} Comments {% for comment in comments %}
{{ comment.user_name }} : {{ comment.submit_date|date:"D d M Y" }} {{ comment.submit_date|time:"g:i A" }}
{{ comment.comment }}
{% endfor %}
{% get_comment_form for app as form %}
{% csrf_token %}


{{ form.comment }}

: {{ form.honeypot }}

{{ form.content_type }} {{ form.object_pk }} {{ form.timestamp }} {{ form.security_hash }}
{% endblock %}