datatracker/ietf/templates/doc/draft/resurrect.html
2013-12-17 12:50:24 +00:00

19 lines
531 B
HTML

{% extends "base.html" %}
{% block title %}Resurrect {{ doc }}{% endblock %}
{% block content %}
<form action="" method="post">{% csrf_token %}
<h1>Resurrect {{ doc }}</h1>
<p>Resurrect {{ doc.file_tag }}?</p>
<p>This will change the status to Active{% if doc.idinternal.resurrect_requested_by %} and email a notice to {{ doc.idinternal.resurrect_requested_by }}{% endif %}.</p>
<div class="actions">
<a href="{{ back_url }}">Back</a>
<input type="submit" value="Resurrect"/>
</div>
</form>
{% endblock %}