datatracker/ietf/secr/templates/drafts/confirm.html
Henrik Levkowetz 2070bbfed6 Merged in [13722] and [13712] from rcross@amsl.com:
Remove all use of request.session from secretariat apps.  Add tests for affected views.  Fixes #1455.
 - Legacy-Id: 13724
Note: SVN reference [13712] has been migrated to Git commit 915b445bcffcd4687fb1677230b98282d22dd9a0

Note: SVN reference [13722] has been migrated to Git commit 3a2cb9d3d846168f75d9796b4e5383bdf10b1f60
2017-06-28 14:55:10 +00:00

50 lines
1.4 KiB
HTML

{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Drafts - Confirm{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
&raquo; <a href="../../">Drafts</a>
&raquo; <a href="../">{{ draft.name }}</a>
&raquo; Confirm
{% endblock %}
{% block content %}
<div class="module draft-container">
<h2>Draft - Confirm</h2>
<form enctype="multipart/form-data" action="{% url "ietf.secr.drafts.views.do_action" id=draft.name %}" method="post">{% csrf_token %}
<table>
<tr><th>Action Selected:</th><td>{{ action }}</td></tr>
<tr><th>Draft:</th><td>{{ draft.name }}</td></tr>
{% for detail in details %}
<tr><th>{{ detail.label }}</th><td>{{ detail.value }}</td></tr>
{% endfor %}
</table>
{% if email %}
<div class="inline-group">
<h2>Scheduled Email</h2>
<table id="draft-confirm-email">
<tr><th>To:</th><td>{{ email.to }}</td></tr>
<tr><th>CC:</th><td>{{ email.cc }}</td></tr>
<tr><th>Subject:</th><td>{{ email.subject }}</td></tr>
<tr><th>Body:</th><td>{{ email.body }}</td></tr>
</table>
</div>
{% endif %}
{{ form }}
{% include "includes/buttons_save_cancel.html" %}
</form>
</div> <!-- module -->
{% endblock %}