datatracker/ietf/templates/nomcom/requirements.html
nick 8ff662aed9 feat: add nomcom expand panel test
Commit ready for merge.
 - Legacy-Id: 19696
2021-11-22 17:37:37 +00:00

47 lines
1.5 KiB
HTML

{% 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 %}