{% extends "interface/project_base.html" %} {% block page %}

Resources

{% for resource in object_list %} {% with download=resource.presigned_url %}

{{ resource.name }} {% if download %} Download {% endif %} {% if request.is_admin %} Upload {% endif %}

{{ resource.description }}

{% if download and resource.media_type == 'audio' %} {% endif %}
{% endwith %} {% endfor %}
{% if request.is_admin %}
Add new
{% endif %}
{% endblock %}