We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8e15fa commit 3d2d9e2Copy full SHA for 3d2d9e2
1 file changed
ietf/templates/nomcom/requirements.html
@@ -18,14 +18,14 @@ <h2>Desired expertise</h2>
18
<ul class="nav nav-tabs" role="tablist">
19
{% for position in positions %}
20
<li {% if forloop.first %}class="active"{% endif %}>
21
- <a data-toggle="tab" role="tab" href="#{{ position.name|slugify }}">{{ position.name }}</a>
+ <a data-toggle="tab" role="tab" href="#pos-{{ position.name|slugify }}">{{ position.name }}</a>
22
</li>
23
{% endfor %}
24
</ul>
25
26
<div class="tab-content">
27
28
- <div class="tab-pane {% if forloop.first %}active{% endif %}" id="{{ position.name|slugify }}">
+ <div class="tab-pane {% if forloop.first %}active{% endif %}" id="pos-{{ position.name|slugify }}">
29
{{ position.get_requirement|safe }}
30
</div>
31
0 commit comments