31 lines
745 B
HTML
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 }}
|
|
» <a href="../">Drafts</a>
|
|
» <a href="../">{{ draft.name }}</a>
|
|
» 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 %}
|