{% extends 'core/core.html' %} {% load mptt_tags %} {% load audiothek %} {% load static %} {% block title %}Detailansicht Beitrag {{ object }} - {{ block.super }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block heading_title %} {{ object }}{% endblock %} {% block heading_action %} {% endblock %} {% block content %}
{% if object.type %}
Typ
{{ object.get_type_display }}
{% endif %}
Beschreibung
{{ object.description|default:'-'|linebreaksbr }}
{% if object.categories %}
Kategorien
{% endif %}
Schlagworte
{% for tag in object.tags.all %} {{tag}} {% empty %} - {% endfor %}
Lizenz
{{ object.license }}
Produktion
{{ object.production_date|default:'-' }}
Veröffentlichung
{{ object.publication_time|default:'-' }}
{% if object.publicationlimit %}
Veröff.beschränkung
{{ object.publicationlimit|publimit}}
{% endif %} {% if object.cover_image %} {% endif %}
Erstellt
{{ object.creation_time|default:'-' }} {{object.creator}}
{% if object.last_edit_time and object.last_editor %}
Zuletzt geändert
{{ object.last_edit_time|default:'-' }} {{object.last_editor}}
{% endif %}

Audiodateien

{% if object.audiofiles.all|length > 0 %} {% for file in object.audiofiles.all %} {% endfor %}
Position Titel Länge Bitrate Abtastrate Kanäle Datei Position ändern
{{ file.position }} {{ file }} {{ file.length|inttotime }} {{ file.bitrate|kbps }} {{ file.samplerate|khz }} {{ file.channels }} {% if file.audiofile %} {% endif %}
{% else %}
Keine Audiodateien zum Beitrag verfügbar.
{% endif %}

Sendetermine

Die Programmplanung erfolgt noch nicht über die LOHROthek. (vsl. Juni/Juli 2020)
{% if object.broadcastitems.all|length > 0 %} {% include 'audiothek/_radioreport_broadcasts.html' with broadcastitems=object.broadcastitems.all %} {% else %}
Keine Sendetermine zum Beitrag verfügbar.
{% endif %}

Urheber*innen

{% csrf_token %}
{% field formroles.user %}
{% field formroles.name %}
{% for role in object.roles.all %} {% endfor %}
Rolle Benutzer sichtbar Aktion
{{ role.get_name }} {{ role.user }} {% if role.public %} {% else %} {% endif %} {% if role.public %} {% else %} {% endif %}
{% if object.externalcreators %}
extern: {{ object.externalcreators }}
{% endif %}

Moderationen

{% if object.moderations.all|length > 0 %} {% for m in object.moderations.all %} {% endfor %}
Name/Bemerkung erstellt/zuletzt bearbeitet Aktionen
{{ m }} {% if m.note %}
{{ m.note }}
{% endif %}
{{ m.creation_time|date:"SHORT_DATETIME_FORMAT" }} {{ m.creator|default:'-' }} {% if m.last_edit_time %}
{{ m.last_edit_time|date:"SHORT_DATETIME_FORMAT" }} {{ m.last_editor|default:'-' }} {% endif %}
{% else %}
Keine Moderationen zum Beitrag verfügbar.
{% endif %} {% endblock %} {% block extra_js %} {# explicit jquery call required https://django-autocomplete-light.readthedocs.io/en/master/tutorial.html#using-autocompletes-outside-the-admin #} {{ formroles.media }} {% endblock %}