29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
{% 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 %} |