Files

8 lines
226 B
HTML

{% for tab in tabs %}
<li role="presentation" class="nav-item">
<a href="{{ tab.url }}" class="nav-link{% if tab.is_active %} active{% endif %}">
{{ tab.label }} {% badge tab.badge %}
</a>
</li>
{% endfor %}