{% extends "channels/base.html" %} {% load static %} {% block title %}Channels Dashboard - {{ block.super }}{% endblock %} {% block breadcrumb_items %} {% endblock %} {% block channels_content %}

Channels Dashboard

{% if perms.channels.add_channel %} Add Channel {% endif %} {% if perms.channels.add_epgentry %} Add EPG Entry {% endif %}
Total Channels
{{ stats.total_channels }}
Active Channels
{{ stats.active_channels }}
Distribution Zones
{{ stats.total_zones }}
Total Shows
{{ stats.total_shows }}
Channel Distribution by Type
Content Distribution by Type
Recent EPG Entries
View All
{% if recent_epg_entries %}
{% for entry in recent_epg_entries %}
{{ entry.show.title }}
{{ entry.channel.name }} {{ entry.start_time|date:"M d, H:i" }}
{% if entry.is_currently_airing %}Live{% elif entry.start_time > now %}Upcoming{% else %}Aired{% endif %}
{% endfor %}
{% else %}

No recent EPG entries found.

{% if perms.channels.add_epgentry %} Add First EPG Entry {% endif %}
{% endif %}
Quick Actions
{% if perms.channels.add_channel %} {% endif %} {% if perms.channels.add_zone %} {% endif %} {% if perms.channels.add_show %} {% endif %} {% if perms.channels.add_epgentry %} {% endif %}
System Status
{{ stats.active_channels }}
Active Channels
{{ stats.active_zones }}
Active Zones
{{ stats.active_jingles }}
Active Jingles

Last Updated: {{ now|date:"M d, Y H:i" }}
Today's Schedule Preview
View Full Schedule
{% endblock %} {% block extra_footer_js %} {% endblock %}