{% set DISABLE_HEADER=true %} {% extends 'base.html' %} {% block title %}{{ _("Attachments of %(name)s", name=partition.name) }}{% endblock %} {% block dialogs %}

{{ _("Add an attachment to %(name)s", name=partition.name) }}


{% block input_file %} {% set required=true %} {% set filetype=".mp3,.mid" %} {% include 'components/input_file.html' %} {% endblock %}
Close
{% endblock %} {% block content %}

{{ _("No pdf viewer available in this browser. You can use Firefox on Android.") }}

{% if partition.attachments | length > 0 %}
{% for attachment in partition.attachments %} {% if attachment.filetype == "mp3" %} {% elif attachment.filetype == "mid" %} {% endif %} {% endfor %}
🎙️ {{ attachment.name }} 🎵 {{ attachment.name }}
{% endif %}
{% if g.user %}
{% endif %} {% endblock %}