forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.html
More file actions
46 lines (39 loc) · 1.5 KB
/
requirements.html
File metadata and controls
46 lines (39 loc) · 1.5 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
36
37
38
39
40
41
42
43
44
45
{% extends "nomcom/nomcom_public_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block subtitle %} - Desired Expertise {% endblock %}
{% block nomcom_content %}
{% origin %}
<h2>Desired expertise</h2>
<p>
These pages contain the current summaries of desired expertise for open
positions, provided to the Nomcom by the IESG, IAB, and IAOC. As the Nomcom
proceeds, per BCP 10, we receive input from the community on the
qualifications required for the positions. The Nomcom bases selections on
all of this information. These pages may be updated periodically.
</p>
<ul class="nomcom-req-positions-tabs nav nav-tabs" role="tablist">
{% for position in positions %}
<li {% if forloop.first %}class="active"{% endif %}>
<a data-toggle="tab" role="tab" href="#pos-{{ position.name|slugify }}">{{ position.name }}</a>
</li>
{% endfor %}
</ul>
<div class="nomcom-req-positions-content tab-content">
{% for position in positions %}
<div class="tab-pane {% if forloop.first %}active{% endif %}" id="pos-{{ position.name|slugify }}">
{{ position.get_requirement|safe }}
</div>
{% endfor %}
</div>
{% endblock %}
{% block js %}
<script>
$('.collapse').collapse()
$('.generic_iesg_reqs_header').addClass('fa')
$('.generic_iesg_reqs_header').addClass('fa-caret-right')
$('.generic_iesg_reqs_header').each(function(){
this.text = ' '+this.text+' (click to expand)'
})
</script>
{% endblock %}