13 lines
370 B
HTML
13 lines
370 B
HTML
{% if settings_nav %}
|
|
<h1 class="title is-4">{{ settings_nav.title }}</h1>
|
|
<div class="tabs is-boxed is-small mb-4 security-page-tabs">
|
|
<ul>
|
|
{% for tab in settings_nav.tabs %}
|
|
<li class="{% if tab.active %}is-active{% endif %}">
|
|
<a href="{{ tab.href }}">{{ tab.label }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|