{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% trans "Reply to Submission" %}{% endblock %} {% block bodyclass %}menu-explorer{% endblock %} {% block content %} {% trans "Reply to Submission" as reply_str %} {% include "wagtailadmin/shared/header.html" with title=reply_str subtitle=page.title icon="mail" %}

{% trans "Original Message" %}

{% for key, value in submission %}

{{ key }}: {{ value }}
{% endfor %}

{% csrf_token %} {{ form.as_p }}
{% endblock %}