{% extends "interface/project_base.html" %} {% load md2 %} {% load polyphonic %} {% block admin %} {% icon "add_notes" %} Add new {% endblock %} {% block page %}

Resources

{% for resource in object_list %} {% with download=resource.file.url %}
{% if download %} {{ resource.name }} {% else %} {{ resource.name }} {% endif %}
{% if request.is_admin %} {% icon "upload_file" %} {% icon "edit" %} {% endif %}

{{ resource.description|markdown }} {% if not resource.visible %}
(This resource is hidden from participants) {% endif %}

{% if download and resource.media_type == 'audio' %} {% endif %}
{% endwith %} {% empty %}

There are no resources for this project

{% endfor %}
{% endblock %}