forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagenda_charter.html
More file actions
35 lines (35 loc) · 1.36 KB
/
agenda_charter.html
File metadata and controls
35 lines (35 loc) · 1.36 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
32
33
34
35
{% load ietf_filters ballot_icon %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% origin %}
{% load ietf_filters ballot_icon person_filters %}
<div class="card mb-3">
<div class="position-absolute top-0 end-0 m-3">{% ballot_icon doc %}</div>
<div class="card-body">
<div class="row">
<div class="col-sm-3 text-end fw-bold">{{ doc.group.type }} name</div>
<div class="col">
<b>{{ doc.group.name }}
<a href="{{ doc.group.about_url }}">({{ doc.group.acronym|upper }})</a>
</b>
</div>
</div>
<div class="row">
<div class="col-sm-3 text-end fw-bold">Charter</div>
<div class="col">
<a href="{{ doc.get_href }}">
<i class="bi bi-file-earmark-fill"></i>
</a>
<a href="{{ doc.get_absolute_url }}">{{ doc.name }}-({{ doc.rev }})</a>
</div>
</div>
<div class="row">
<div class="col-sm-3 text-end fw-bold">Area</div>
<div class="col">
<a href="{% url 'ietf.group.views.active_groups' group_type='wg' %}#{{ doc.group.parent.acronym }}">
{{ doc.group.parent.acronym|upper }}</a>
({% person_link doc.ad %})
</div>
</div>
</div>
</div>