Conflicts: ietf/doc/templatetags/ietf_filters.py ietf/doc/views_charter.py ietf/templates/doc/charter/edit_notify.html ietf/templates/doc/charter/edit_telechat_date.html ietf/templates/doc/document_ballot_content.html ietf/templates/doc/document_history.html ietf/templates/doc/edit_notify.html ietf/templates/doc/edit_telechat_date.html ietf/templates/doc/notify.html ietf/templates/group/concluded_groups.html - Legacy-Id: 8429
28 lines
873 B
HTML
28 lines
873 B
HTML
{% extends "ietf.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}Approval announcement writeup for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Approval announcement writeup<br><small>{{ doc }}</small></h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<form role="form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form approval_text_form %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary" name="save_approval_text">Save text</button>
|
|
<button type="submit" class="btn btn-warning" name="regenerate_approval_text">Regenerate text</button>
|
|
{% if user|has_role:"Secretariat" and can_announce %}
|
|
<a class="btn btn-default" href="{% url "doc_approve_ballot" name=doc.name %}">Approve ballot</a>
|
|
{% endif %}
|
|
<a class="btn btn-default pull-right" href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock%}
|