forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease_draft.html
More file actions
29 lines (27 loc) · 1.08 KB
/
release_draft.html
File metadata and controls
29 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "base.html" %}
{% load origin %}
{% load bootstrap3 %}
{% block morecss %}
.center-button-text { text-align: center;}
{% endblock %}
{% block content %}
<div class='col-md-12 center-button-text button btn-warning'>Warning</div>
<div class='col-md-12'>
{% if doc.stream.slug == 'ise' %}
This action will unset all Independent stream state and remove the document from the Independent stream.
{% else %}
This action will unset all {{doc.group.acronym|upper}} group state, and remove the document from the {{doc.stream.name}} stream.<br>
This is appropriate, for example, if the group decided not to adopt a document after considering it.<br>
It may also be appropriate if the group is abandoning the document.
{% endif %}
</div>
<div class='col-md-12 center-button-text button btn-warning'>Warning</div>
<div>
<form method='POST'>
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-primary">Proceed</button>
<a class="btn btn-default pull-right" href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">Cancel</a>
</form>
</div>
{% endblock %}