{% extends "base.html" %} {% load i18n %} {% block appbar %}

Earwig

{% trans "Channels" %} {% trans "Add Channel" %} {% endblock %} {% block content %}

{% for sound in object_list %} {% empty %} {% endfor %}
{% trans "Channel" %} {% trans "Title / Description" %} {% trans "Date" %} {% trans "Actions" %}
{{ sound.channel.title }} {{ sound.title }} {% if sound.description %}{{ sound.description|striptags|truncatewords:40|safe }}{% endif %} {{ sound.creation_timestamp }} {% trans "Publish" %} / {% trans "Reject" %}
{% trans "Nothing to moderate" %}
{% include "gadjo/pagination.html" %} {% endblock %}