datatracker/ietf/templates/nomcom/requirements.html
Lars Eggert a8764f225f Track CSS class name changes in bs5.
- Legacy-Id: 19663
2021-11-15 16:49:09 +00:00

46 lines
1.6 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="nav nav-tabs">
{% for position in positions %}
<li class="nav-item">
<a class="nav-link {% if forloop.first %}active{% endif %}" data-bs-toggle="tab" role="tab" href="#pos-{{ position.name|slugify }}">{{ position.name }}</a>
</li>
{% endfor %}
</ul>
<div class="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('bi')
$('.generic_iesg_reqs_header').addClass('bi-caret-right')
$('.generic_iesg_reqs_header').each(function(){
this.text = ' '+this.text+' (click to expand)'
})
</script>
{% endblock %}