{% extends "base.html" %} {% load static %} {% block title %}Delete Channel - {{ object.name }}{% endblock %} {% block content %}

Delete Communication Channel

Confirm Channel Deletion
This action cannot be undone

{{ object.message_count|default:0 }}

Total Messages Sent

{{ active_alert_rules|default:0 }}

Active Alert Rules

{% if affected_alert_rules %}
Affected Alert Rules:
{% for rule in affected_alert_rules %} {% endfor %}
Rule Name Category Severity Status
{{ rule.rule_name }} {{ rule.get_category_display }} {{ rule.get_severity_display }} {% if rule.is_active %}Active{% else %}Inactive{% endif %}
{% endif %}
Consider These Alternatives
Disable Channel

Temporarily stop using this channel without losing configuration

Archive Channel

Keep configuration for future use but mark as inactive

Migrate to New Channel

Create a replacement channel and transfer alert rules

Export Configuration

Save channel settings before deletion for future reference

{% csrf_token %}
This ensures you're deleting the correct channel
Cancel
{% endblock %} {% block js %} {% endblock %}