{% extends "base.html" %} {% load static %} {% block title %}Communication Channels - Communications{% endblock %} {% block content %}

Communication Channels

Total Channels

{{ total_channels }}

Active Channels

{{ active_channels }}

Messages Today

{{ messages_today }}

Delivery Rate

{{ delivery_rate }} %

Communication Channels

Add Channel
Last updated: {{ last_updated|date:"g:i A" }}
{% for channel in object_list %} {% empty %} {% endfor %}
Channel Type Status Health Messages Success Rate Actions
{{ channel.name }}
{{ channel.description|truncatechars:40 }}
{{ channel.get_channel_type_display }}
{% if channel.is_active %}Active{% else %}Inactive{% endif %} {% if channel.is_active %}
{% endif %}
{{ channel.get_health_status_display|default:"Unknown" }} {% if channel.last_health_check %}
{{ channel.last_health_check|timesince }} ago {% endif %}
{{ channel.message_count|default:0 }}
total
{{ channel.success_rate|default:0 }}%
No communication channels found

Create your first communication channel to start sending messages

Add Channel
{% if is_paginated %}
    {% if page_obj.has_previous %}
  • {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %}
  • {{ num }}
  • {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
  • {{ num }}
  • {% endif %} {% endfor %} {% if page_obj.has_next %}
  • {% endif %}
{% endif %}
{% endblock %} {% block js %} {% endblock %}