{% extends "telemeta/base.html" %} {% load telemeta_utils %} {% load i18n %} {% block extra_javascript %} {% endblock %} {% block content %}
{% block module_searches %} {% with searches as searches and "My searches" as title %} {% include "telemeta/inc/module_searches.html" %} {% endwith %} {% endblock %} {% block module_user_revisions %} {% with user_revisions as revisions and "My last changes" as title %} {% include "telemeta/inc/module_user_revisions.html" %} {% endwith %} {% endblock %} {% block module_all_revisions %} {% with revisions as revisions and "All last changes" as title %} {% include "telemeta/inc/module_revisions.html" %} {% endwith %} {% endblock %}

{% trans "My playlists" %}

{% trans "Add" %} {% for playlist in playlists %} {% if playlist.playlist.description %} {% endif %}
{{ playlist.playlist.title }} {% trans "Edit" %} CSV Collections CSV Items {% trans "Delete" %}
{{ playlist.playlist.description }}
{% for resource in playlist.resources %} {% endfor %}
{% trans "Title" %} {% trans "Type" %} {% trans "Code" %} {% trans "Recordist" %} {% trans "Recording period" %} {% 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 %} {% if resource.element.title %}{{ resource.element.title }}{% else %}{{ resource.element }}{% endif %} {% endif %} {% if resource.type == "marker" and not resource.element == None %} {{ resource.element }} {% endif %} {% if resource.type == "corpus" or resource.type == "fonds" %} {{ resource.element.title }} {% 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 %}