moviewyrm/bookwyrm/templates/snippets/tabs.html

7 lines
168 B
HTML
Raw Normal View History

2020-03-15 21:15:36 +00:00
{% for tab in tabs %}
<div class="tab {% if tab.id == active_tab %}active{% endif %}">
<a href="{{ path }}/{{ tab.id }}">{{ tab.display }}</a>
</div>
2020-03-15 21:15:36 +00:00
{% endfor %}