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

Distribution Zones {{ zones.count }}

{% if perms.channels.add_zone %} Add Zone {% endif %}
{% if zones %}
{% for zone in zones %}
{{ zone.name }}

{{ zone.code }}

{% if zone.is_active %}Active{% else %}Inactive{% endif %} {% if zone.channels.count > 0 %} {{ zone.channels.count }} Channel{{ zone.channels.count|pluralize }} {% endif %}
{% if zone.description %}

{{ zone.description|truncatewords:15 }}

{% endif %}
{{ zone.channels.count }}
Channels
{{ zone.active_channels_count }}
Active
{{ zone.total_configurations }}
Configs
Created: {{ zone.created_at|date:"M d, Y" }}
Updated: {{ zone.updated_at|date:"M d" }}
{% endfor %}
{% if is_paginated %} {% endif %} {% else %}

No Distribution Zones Found

{% if request.GET.search or request.GET.status %} No zones match your current search criteria. Try adjusting your filters. {% else %} You haven't created any distribution zones yet. Create your first zone to start organizing channel distribution. {% endif %}

{% if perms.channels.add_zone %} Create First Zone {% endif %} {% if request.GET.search or request.GET.status %} Clear Filters {% endif %}
{% endif %} {% endblock %} {% block extra_footer_js %} {% endblock %}