{% extends "base.html" %} {% load i18n %} {% block title %}{{ section.title }}{% endblock %} {% block content %}

{% trans "Automatic update every" %} 5 {% trans "minuts" %}. {% trans "Last update" %}: {% now "Y-m-d H:i:s" %}

{% trans "This is on air status" %}:

{% if schedules %} {% for schedule in schedules %} {% endfor %}
{% trans "Type" %} {% trans "Title" %} {% trans "Programmed for" %} {% trans "That is" %} {% trans "Last emission done" %} {% trans "Length" %} {% trans "File" %}
{{ schedule.tipo }} {{ schedule.title }} {{ schedule.datet|date:"Y-m-d H:i:s" }} {%if schedule.datet %} {% if schedule.isfuture %} {% trans "in" %} {{ schedule.datet|timeuntil }} {% else %} {{ schedule.datet|timesince }} {% trans "ago" %} {% endif %}{% endif %} {{ schedule.datetdone|timesince }} {%if schedule.datetdone %} {% trans "ago" %} {% endif %} {{ schedule.length_s }} {% trans "Download" %}
{% else %}

{% trans "No schedule are available" %}.

{% endif %} {% endblock %}