{% extends "base.html" %} {% block title %}Notifications - AsapLoads POS{% endblock %} {% block content %}
Notifications
View system notifications and alerts
Mark All as Read

System notifications include alerts for low stock, license expiry, and other important system events.

{% if notifications %}
{% for notification in notifications %}
{{ notification.title }}
{{ notification.created_at|date:"M d, Y H:i" }}

{{ notification.message }}

{% if notification.branch %} {{ notification.branch.name }} {% else %} System {% endif %}
{% if not notification.is_read %} Mark as Read {% else %} Read {% endif %}
{% endfor %}
{% else %}

No notifications at this time.

{% endif %}
{% block extra_js %} {% endblock %} {% endblock %}