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
31 lines
818 B
HTML
31 lines
818 B
HTML
{% extends "base_site.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Drafts - Email{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» <a href="../../">Drafts</a>
|
|
» <a href="../">{{ draft.name }}</a>
|
|
» Email
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="module draft-container">
|
|
<h2>Draft - Email</h2>
|
|
<form enctype="multipart/form-data" action="{% url "ietf.secr.drafts.views.confirm" id=draft.name %}" method="post">{% csrf_token %}
|
|
<table id="draft-email-table" class="full-width">
|
|
{{ form.as_table }}
|
|
</table>
|
|
|
|
{% include "includes/buttons_save_cancel.html" %}
|
|
|
|
</form>
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|