{% extends "formunculous/base.html" %} {% load i18n formunculous_tags %} {% block css %} {{ block.super }} {% endblock %} {% block title %}{% trans "Submission Confirmation" %} - {% trans ad.name %}{% endblock %} {% block content_title %}{% trans "Submission Confirmation" %} - {% trans ad.name %}{% endblock %} {% block content %}

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

{% blocktrans with ad.owner as email %} Below is the information that you have submitted. If there any problems, or some of the information is incorrect please contact {{ email }} to make any corrections. {% endblocktrans %}

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