{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Live TV" %}{% endblock %} {% block content %}

{% trans "Live TV" %}

{{ total_count }} {% trans "channels" %}
{% if last_sync %} {% trans "Last sync:" %} {{ last_sync|date:"Y-m-d H:i" }} {% endif %} playlist.m3u
{% if not total_count %}

{% trans "No channels yet" %}

{% trans "Click \"Sync Channels\" to fetch channels from the source." %}

{% else %} {% for cat_id, group in grouped_channels %}

{{ group.name }} ({{ group.channels|length }})

{% for channel in group.channels %} {% endfor %}
{% endfor %} {% endif %}
{% trans "LIVE" %}
{% endblock %}