{% extends "channels/base.html" %} {% load static %} {% block title %}{{ channel.name }} - Channel Details - {{ block.super }}{% endblock %} {% block breadcrumb_items %} {% endblock %} {% block channels_content %}
{% if channel.logo %} {{ channel.name }} {% else %}
{% endif %}

{{ channel.name }}

{{ channel.get_channel_type_display }} Channel

{% if perms.channels.change_channel %} Edit Channel {% endif %}
Channel Information

{{ channel.name }}

{{ channel.get_channel_type_display }}

{{ channel.country.name }}

{{ channel.language }}

{{ channel.get_content_rating_display }}

{% if channel.is_active %}Active{% else %}Inactive{% endif %}

{{ channel.created_at|date:"M d, Y H:i" }}

{{ channel.updated_at|date:"M d, Y H:i" }}

{% if channel.description %}

{{ channel.description }}

{% endif %} {% if channel.website %} {% endif %}
Statistics
{{ channel.zones_count }}
Distribution Zones
{{ channel.jingles_count }}
Jingles
{{ channel.epg_entries.count }}
EPG Entries
Quick Actions
{% if perms.channels.add_epgentry %} Add EPG Entry {% endif %} {% if perms.channels.add_jingle %} Add Jingle {% endif %} {% if perms.channels.change_channel %} Manage Zones {% endif %}
Distribution Zones ({{ channel.zones_count }})
{% if perms.channels.change_channel %} {% endif %}
{% if channel.active_zones %}
{% for zone in channel.active_zones %}
{{ zone.name }}

Code: {{ zone.code }}

{% if zone.channelzone_set.first %}
Video: {{ zone.channelzone_set.first.video_codec.name }}
Audio: {{ zone.channelzone_set.first.audio_codec.name }}
Bitrate: {{ zone.channelzone_set.first.bitrate }} kbps
{% endif %}
{% if zone.is_active %}Active{% else %}Inactive{% endif %}
{% endfor %}
{% else %}

No distribution zones configured for this channel.

{% if perms.channels.change_channel %} {% endif %}
{% endif %}
Electronic Program Guide
{% if perms.channels.add_epgentry %} Add EPG Entry {% endif %}
{% if recent_epg_entries %}
{% for entry in recent_epg_entries %} {% endfor %}
Show Start Time End Time Duration Status Actions
{% if entry.show.poster %} {{ entry.show.title }} {% endif %}
{{ entry.show.title }}
{{ entry.show.get_show_type_display }} {% if entry.episode_number %}
Episode {{ entry.episode_number }}
{% endif %}
{{ entry.start_time|date:"M d, H:i" }} {{ entry.end_time|date:"M d, H:i" }} {{ entry.duration_display }} {% if entry.is_currently_airing %}Live Now{% elif entry.start_time > now %}Upcoming{% else %}Aired{% endif %} {% if entry.is_premiere %}Premiere{% endif %} {% if entry.is_finale %}Finale{% endif %} {% if entry.is_live %}Live{% endif %} {% if perms.channels.change_epgentry %} {% endif %}
{% else %}

No EPG entries found for this channel.

{% if perms.channels.add_epgentry %} Add First EPG Entry {% endif %}
{% endif %}
Jingles ({{ channel.jingles_count }})
{% if perms.channels.add_jingle %} {% endif %}
{% if channel.jingles.all %}
{% for jingle in channel.jingles.all %}
{{ jingle.name }}
{% if jingle.is_active %}Active{% else %}Inactive{% endif %}

{{ jingle.get_jingle_type_display }}

Duration: {{ jingle.duration_display }}
Priority: {{ jingle.priority }}
{% if jingle.audio_file %}
Audio
{% endif %} {% if jingle.video_file %}
Video
{% endif %}
{% if perms.channels.change_jingle %}
{% if jingle.audio_file %} {% endif %}
{% endif %}
{% endfor %}
{% else %}

No jingles configured for this channel.

{% if perms.channels.add_jingle %} {% endif %}
{% endif %}
{% endblock %} {% block extra_footer_js %} {% endblock %}