{% extends "dashboard/base.html" %} {% block title %}Notifications - {{ dashboard_title }}{% endblock %} {% block page_heading %}Notifications{% endblock %} {% block content %}
{% if is_admin %} {% endif %} {% for record in records %} {% if is_admin %} {% endif %} {% endfor %} {% if not records %} {% endif %}
Status Agent Event Channel Target Attempts TimeActions
{% if record.status == 'delivered' %} check_circle Delivered {% elif record.status == 'failed' %} error Failed {% else %} pending Pending {% endif %} {{ record.agent_id }} {{ record.event_type }} {{ record.channel }} {{ record.target }} {{ record.attempts }} {{ format_datetime(record.created_at) if record.created_at else '-' }} {% if record.status == 'failed' %}
{% endif %}
No notification records found.
{% if total > page_size %}
Showing {{ offset + 1 }}-{{ [offset + page_size, total] | min }} of {{ total }}
{% if offset > 0 %} Previous {% endif %} {% if offset + page_size < total %} Next {% endif %}
{% endif %}
{% endblock %}