{% extends "admin/base_site.html" %} {% load i18n %} {% load static %} {% block title %} {% trans "Monitoring streamer" %} {% endblock %} {% block content %}

{% trans "Monitor Streamer" %}

{% for station in stations %}

{{ station.name }}

{% for source in station.sources %} {% endfor %}
{{ station.name }} {% with station.streamer.current_source.name as current_source %} {% blocktrans %} Current source: {{ current_source }} {% endblocktrans %} {% endwith %}
{% trans "Source" %} {% trans "File" %} {% trans "Actions*" %}
{% if source.is_dealer %} {% trans "Diffusions" %} {% else %} {{ source.name }} {% endif %} {% if source.name == station.streamer.current_source.name %} {% trans {% endif %} {% if source.is_dealer %} {% trans {% elif not source.program.is_show %} {% trans {% endif %} {% if source.is_dealer %} {{ source.playlist|join:"
" }} {% else %} {{ source.current_sound }} {% endif %}
{% endfor %}
{% blocktrans %} *: Due to some technical issues, it might take up to 30 seconds to execute the given action. {% endblocktrans %}
{% endblock %}