33 lines
868 B
HTML
33 lines
868 B
HTML
{% extends "base_site.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Drafts - Extend{% 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>
|
|
» Extend
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="module draft-container">
|
|
<h2>Draft - Extend Expiry</h2>
|
|
|
|
<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
|
|
<table class="full-width">
|
|
<tr><th><label>Current Expiration Date:</label></th><td>{{ draft.expires|date:"Y-m-d" }}</td></tr>
|
|
{{ form.as_table }}
|
|
</table>
|
|
|
|
{% include "includes/buttons_save_cancel.html" %}
|
|
|
|
</form>
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|