datatracker/ietf/templates/doc/draft/release_draft.html
Lars Eggert df2565096d bootstrap3 -> django_bootstrap5
Only load the module, no other changes yet.
 - Legacy-Id: 19586
2021-11-09 14:09:28 +00:00

29 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% load origin %}
{% load django_bootstrap5 %}
{% 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 %}