40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}Last call text for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Last call text<br><small>{{ doc }}</small></h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<form role="form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form last_call_form %}
|
|
|
|
{% if can_request_last_call and need_intended_status %}
|
|
<span class="help-block">
|
|
You need to select intended status of {{ need_intended_status }} and regenerate last call text to request last call.
|
|
</span>
|
|
{% endif %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary" name="save_last_call_text">Save text</button>
|
|
{% if can_request_last_call and not need_intended_status %}
|
|
<button type="submit" class="btn btn-warning" name="send_last_call_request" value="Save and Request Last Call">Save text & request last call</button>
|
|
{% endif %}
|
|
<button type="submit" class="btn btn-warning" name="regenerate_last_call_text" value="Gegenerate Last Call Text">Regenerate text</button>
|
|
{% if user|has_role:"Secretariat" and can_make_last_call %}
|
|
<a class="btn btn-danger" href="{% url "doc_make_last_call" name=doc.name %}">Issue last call</a>
|
|
{% endif %}
|
|
<a class="btn btn-default pull-right" href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock%}
|