datatracker/ietf/templates/doc/draft/release_draft.html
Lars Eggert f17a7eddd4 pull-right -> float-end
- Legacy-Id: 19613
2021-11-10 09:57:57 +00:00

30 lines
1.2 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-primary float-end" href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">Cancel</a>
</form>
</div>
{% endblock %}