{% extends "formunculous/base.html" %} {% load i18n %} {% block js %}{{ block.super }} {% if history %} {% endif %} {% endblock %} {% block css %}{{ block.super }} {% endblock %} {% block title %}{{ ad.name}} - {% trans "Completed Form" %}{% endblock %} {% block content_title %}{{ ad.name}} {% trans "Completed Form" %}{% endblock %} {% block content %}

{% blocktrans with ad.name as appname %} Thank you for completing {{ appname }}. {% endblocktrans %}

{% blocktrans %} It was submitted {% endblocktrans %} {{ app.submission_date|timesince }} {% trans "ago on" %} {{ app.submission_date|date:"D d M Y" }} {% trans "at" %} {{ app.submission_date|time:"g:i A" }}. {% blocktrans with ad.owner as email %}

If there any problems, or some of the information is incorrect, please contact {{ email }} to make any corrections. {% endblocktrans %}

{% if not ad.email_only %}

{% blocktrans %} Below is the information that you submitted: {% endblocktrans %}

{% if ad.authentication %} {% if ad.authentication_multi_submit %} {# Offer link to start an additional form #}

{% trans "Start an additional form" %}

{% endif %} {% endif %} {% if history %}

View previously completed {{ ad.name }} forms:

{% endif %}
{% 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 %}
{% endif %} {% endblock %}