{% extends "telemeta/base.html" %} {% load telemeta_utils %} {% load i18n %} {% block extra_javascript %} {% endblock %} {% block content %}
{% block modules %} {% include "telemeta/inc/module_revisions.html" %} {% endblock %}

playlists {% trans "Playlists" %}

{% trans "Add" %} {% for playlist in playlists %} {% if playlist.playlist.description %} {% endif %}
{{ playlist.playlist.title }} CSV Collections CSV Items {% trans "Delete" %}
{{ playlist.playlist.description }}
{% for resource in playlist.resources %} {% endfor %}
{% trans "Title" %} {% trans "Type" %} {% trans "Code" %} {% trans "Recordist" %} {% trans "Year of recording" %} {% trans "Sound" %} {% trans "Action" %}
{% if resource.type == "item" and not resource.element == None %} {{ resource.element }} {% endif %} {% if resource.type == "collection" and not resource.element == None %} {{ resource.element }} {% endif %} {% if resource.type == "marker" and not resource.element == None %} {{ resource.element }} {% endif %} {% if resource.element == None %}{% trans "deleted" %}{% endif %} {{ resource.type }} {{ resource.element.public_id }} {{ resource.element.apparent_collector }} {% if resource.element.recorded_from_date %} {{ resource.element.recorded_from_date.year }} {% if resource.element.recorded_to_date and not resource.element.recorded_to_date.year|equals:resource.element.recorded_from_date.year %} - {{ resource.element.recorded_to_date.year }} {% endif %} {% endif %} {% if resource.element.file or resource.element.has_mediafile %} yes {% endif %}
{% endfor %}
{% endblock %}