{% extends "base.html" %} {% load i18n %} {% block appbar %} {% trans "Channels" %} {% trans "Add Channel" %} {% endblock %} {% block content %}

{% for sound in object_list %} {% empty %} {% endfor %}
{% trans "Channel" %} {% trans "Title / Description" %} {% trans "Original Publication Date" %} {% trans "Addition Date" %} {% trans "Actions" %}
{{ sound.channel.title }} {{ sound.title }} {% if sound.description %}{{ sound.description|striptags|truncatewords:40|safe }}{% endif %} {{ sound.original_publication_date|date:"DATE_FORMAT" }} {{ sound.creation_timestamp }} {% if sound.can_publish %} {% trans "Publish" %} / {% endif %} {% if sound.can_reject %} {% trans "Reject" %} / {% endif %} {% if sound.can_unpublish %} {% trans "Unpublish" %} {% endif %}
{% trans "No search results" %}
{% include "gadjo/pagination.html" %} {% endblock %}