forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextract_email_lists.html
More file actions
28 lines (28 loc) · 1.06 KB
/
extract_email_lists.html
File metadata and controls
28 lines (28 loc) · 1.06 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
{% extends "nomcom/nomcom_private_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block subtitle %}- Email Lists{% endblock %}
{% block nomcom_content %}
{% origin %}
<h2>
Email lists
<br>
<small class="text-muted">{{ nomcom.group }}</small>
</h2>
{% with title='Nominees Pending Acceptance' list=pending heading="h3" %}
{% include 'nomcom/email_list_panel.html' %}
{% endwith %}
{% with title='Accepted Nominees' list=accepted heading="h3" %}
{% include 'nomcom/email_list_panel.html' %}
{% endwith %}
{% with title='Accepted Nominees Without a Questionnaire Response' list=noresp heading="h3" %}
{% include 'nomcom/email_list_panel.html' %}
{% endwith %}
<h3 class="mt-3">Accepted Nominees by Position</h3>
{% for pos, accepts in bypos.items %}
{% with title=pos.name list=accepts heading="h4" %}
{% include 'nomcom/email_list_panel.html' %}
{% endwith %}
{% endfor %}
{% endblock %}