28 lines
998 B
HTML
28 lines
998 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}Approval announcement writeup for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Approval announcement writeup<br><small><a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">{{ doc }}</a></small></h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form approval_text_form %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-default" name="save_approval_text" value="Save text">Save text</button>
|
|
<button type="submit" class="btn btn-warning" name="regenerate_approval_text" value="Regenerate text">Regenerate text</button>
|
|
{% if user|has_role:"Secretariat" and can_announce %}
|
|
<a class="btn btn-primary" href="{% url "doc_approve_ballot" name=doc.name %}">Approve ballot</a>
|
|
{% endif %}
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock%}
|