on feedback from Cindy Morgan, now there's a link on the approval page to go to the edit page which sends you back upon saving, and the edit page doesn't provide a button to send the announcement since you should do that on the approve page (instead it provides a link). - Legacy-Id: 4474
41 lines
1 KiB
HTML
41 lines
1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}WG {{ announcement }} announcement writeup for {{ charter.chartered_group.acronym }}{% endblock %}
|
|
|
|
{% block morecss %}
|
|
form #id_announcement_text {
|
|
width: 700px;
|
|
height: 600px;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>WG {{ announcement }} announcement writeup for {{ charter.chartered_group.acronym }}</h1>
|
|
|
|
<form action="" method="POST">
|
|
|
|
{{ announcement_text_form.announcement_text }}
|
|
|
|
<div class="actions">
|
|
<a href="{{ back_url }}">Back</a>
|
|
<input type="submit" name="regenerate_text" value="Regenerate" />
|
|
<input type="submit" name="save_text" value="Save" />
|
|
</div>
|
|
|
|
{% load ietf_filters %}
|
|
{% if user|has_role:"Secretariat" %}
|
|
<h3>Secretariat actions</h3>
|
|
|
|
<div class="actions">
|
|
{% if announcement == "action" %}
|
|
<a href="{% url charter_approve name=charter.canonical_name %}">Go to charter approval page</a>
|
|
{% else %}
|
|
<input type="submit" name="send_text" value="Send WG {{ announcement }} announcement" />
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</form>
|
|
|
|
{% endblock%}
|