{% extends "file_detail.html" %} {% load django_bootstrap5 %} {% load render_table from django_tables2 %} {% block title %}File Tags{% endblock title %} {% block file_detail %}

{{ file.filetype|capfirst }} {{ file.title }} Tags

{% include "includes/tag_filter.html" %}
{% include "includes/tag_toolbar.html" %} {% if not filter.qs.count %}

No tags found

Add new tags

{% else %} {% render_table table %} {% endif %}
{% endblock file_detail %}