mirror of
https://github.com/ae-utbm/sith.git
synced 2026-05-14 04:58:06 +00:00
3af5d96bf5
* Convert FileModerationView into ListView and add pagination with htmx * Don't allow sas moderation in file moderation view * Split up base.jinja and introduce base_fragment.jinja * Improve FileModerationView performances and make it root only * Add permissions tests for file modération
10 lines
270 B
Django/Jinja
10 lines
270 B
Django/Jinja
{% if list_of_tabs %}
|
|
<div class="tool_bar">
|
|
<div class="tools">
|
|
{% for t in list_of_tabs -%}
|
|
<a href="{{ t.url }}" {%- if current_tab==t.slug %} class="selected_tab" {%- endif -%}>{{ t.name }}</a>
|
|
{%- endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|