forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction_announcement_text.html
More file actions
31 lines (31 loc) · 1.22 KB
/
action_announcement_text.html
File metadata and controls
31 lines (31 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% load ietf_filters %}
{% block title %}
{{ charter.chartered_group.type.name }} action announcement writeup for {{ charter.chartered_group.acronym }}
{% endblock %}
{% block content %}
{% origin %}
<h1>
{{ charter.chartered_group.type.name }} action announcement writeup
<br>
<small class="text-muted">{{ charter.chartered_group.acronym }}</small>
</h1>
<form class="mt-3" method="post">
{% csrf_token %}
{% bootstrap_form announcement_text_form %}
<button type="submit" class="btn btn-primary" name="save_text" value="Save">Submit</button>
<button type="submit" class="btn btn-warning" name="regenerate_text" value="Regenerate">Regenerate
</button>
{% if user|has_role:"Secretariat" %}
<a type="submit"
class="btn btn-primary"
href="{% url 'ietf.doc.views_charter.approve' name=charter.canonical_name %}">
Charter approval page
</a>
{% endif %}
<a class="btn btn-secondary float-end" href="{{ back_url }}">Back</a>
</form>
{% endblock %}