forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestionnaires.html
More file actions
26 lines (22 loc) · 856 Bytes
/
questionnaires.html
File metadata and controls
26 lines (22 loc) · 856 Bytes
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
{% extends "nomcom/nomcom_public_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block subtitle %} - Questionnaires {% endblock %}
{% block nomcom_content %}
{% origin %}
<h2>Questionnaires</h2>
<ul class="nomcom-questnr-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="#{{ position.name|slugify }}">{{ position.name }}</a>
</li>
{% endfor %}
</ul>
<div class="nomcom-questnr-positions-content tab-content">
{% for position in positions %}
<div class="tab-pane {% if forloop.first %}active{% endif %}" id="{{ position.name|slugify }}">
{{ position.get_questionnaire|linebreaks}}
</div>
{% endfor %}
</div>
{% endblock %}