{% extends "layouts/base.html" %} {% load static %} {% block title %} {% if zone.pk %} Edit Zone - {{ zone.name }} {% else %} New Zone {% endif %} {% endblock title %} {% block extra_css %} {% endblock extra_css %} {% block breadcrumb %} {% endblock breadcrumb %} {% block content %}
{% csrf_token %}
Basic Information
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
Enter a unique name for this zone
{{ form.channel }} {% if form.channel.errors %}
{{ form.channel.errors.0 }}
{% endif %}
Select the channel this zone belongs to
{{ form.zone_type }} {% if form.zone_type.errors %}
{{ form.zone_type.errors.0 }}
{% endif %}
Specify the type of this zone
{{ form.location }} {% if form.location.errors %}
{{ form.location.errors.0 }}
{% endif %}
Physical or logical location of the zone
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
Provide a detailed description of this zone
{% if form.additional_fields %}
Additional Configuration
{% for field in form.additional_fields %}
{{ field }} {% if field.errors %}
{{ field.errors.0 }}
{% endif %} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% endfor %}
{% endif %}
Zone Preview
Name: {% if zone.name %}{{ zone.name }}{% else %}Enter zone name{% endif %}
Channel: {% if zone.channel %}{{ zone.channel.display_name|default:zone.channel.name }}{% else %}Select channel{% endif %}
Type: {% if zone.zone_type %}{{ zone.get_zone_type_display }}{% else %}Not specified{% endif %}
Location: {% if zone.location %}{{ zone.location }}{% else %}Not specified{% endif %}
Description: {% if zone.description %}{{ zone.description|truncatechars:50 }}{% else %}No description{% endif %}
Help & Tips
Zone Guidelines
  • Zone names should be unique within a channel
  • Choose descriptive names for easy identification
  • Zone types help categorize and organize zones
  • Location can be physical or logical reference
{% if zone.pk %}
Editing Zone

Changes to this zone will be applied immediately. Make sure to review your changes before saving.

{% endif %}
Cancel
{% if zone.pk %}
{% endif %}
{% endblock content %} {% block modals %} {% if zone.pk %} {% endif %} {% endblock modals %} {% block extra_js %} {% endblock extra_js %}