{% extends 'interface/project_base.html' %} {% load path_filters %} {% block media %} {% endblock %} {% block admin %} Edit Add to project {% endblock %} {% block page %}

{{ work.name }} {% for tag in work.tags %} {{ tag }} {% endfor %}

{% firstof work.composer "Unattributed" %}{% if work.edition %} - {{ work.edition }}{% endif %}

{{ work.notes }}

Location: {{ work.collection }} [{{ work.identifier }}]
Running time: {{ work.duration }}
Licence: {{ work.get_licence_display }}
{% for meta in work.meta %} {{ meta.get_name_display }}: {{ meta.value }}
{% endfor %}

{% if work.parent %}

From {{ work.parent.name }} - {{ work.parent.composer }}

{% endif %} {% if work.related_works.count %}

Related

{% endif %}

Printed Parts

{% for inst, c in work.physical_parts %} {{ inst }} ({{ c }}) {% empty %}

No printed parts listed

{% endfor %}

Digital Parts

{% if work.digital_parts %} Full Set {% endif %} {% for part in work.digital_parts %} {{ part.instrument }} {% empty %}

No digital parts available

{% endfor %}

Files

{% for doc in work.docs.all %} {% include 'library/document_entry.html' %} {% endfor %}
Filename Sections
{% if request.is_admin %}

Upload files

{% csrf_token %}
{% endif %}
{% if request.is_admin %}

Loans

Checkout
{% for item in work.current_loans %} {% empty %} {% endfor %}
Ensemble Project Checked Out Due Back
{{ item.project.ensemble.name }} {{ item.project.name }} {{ item.checkout.date|date:"d/m/Y" }} {{ item.due.date|date:"d/m/Y" }}
No current loans
{% endif %} {% block scripts %} {% endblock %} {% endblock %}