datatracker/ietf/secr/templates/drafts/withdraw.html
2015-08-01 14:53:59 +00:00

31 lines
745 B
HTML

{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Drafts - Withdraw{% 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; Withdraw
{% endblock %}
{% block content %}
<div class="module draft-container">
<h2>Draft - Withdraw</h2>
<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
<table class="full-width">
{{ form.as_table }}
</table>
{% include "includes/buttons_save_cancel.html" %}
</form>
</div> <!-- module -->
{% endblock %}