{# app/templates/admin/notifications.html #} {% extends "admin/base.html" %} {% from 'shared/macros/headers.html' import page_header %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/modals.html' import confirm_modal %} {% block title %}Notifications{% endblock %} {% block alpine_data %}adminNotifications(){% endblock %} {% block content %} {{ page_header('Notifications & Alerts') }} {{ loading_state('Loading notifications...') }} {{ error_state('Error loading notifications') }}

Unread

0

Active Alerts

0

Critical

0

Resolved Today

0

Showing - of
{{ confirm_modal('deleteNotificationConfirm', 'Delete Notification', 'Are you sure you want to delete this notification? This action cannot be undone.', 'deleteNotification(pendingDeleteNotificationId)', 'showDeleteNotificationConfirm', 'Delete', 'Cancel', 'danger') }} {% endblock %} {% block extra_scripts %} {% endblock %}