{% extends "core/base.html" %} {% load static %} {% block title %}Notifications - SwiftPOS{% endblock %} {% block topbar_title %}Notifications{% endblock %} {% block content %}

Notifications

{% if unread_count %}{{ unread_count }} unread notification{{ unread_count|pluralize }}{% else %}All caught up!{% endif %}

{% if page_obj %}
{% for notif in page_obj %}
{{ notif.title }}
{{ notif.message }}
{{ notif.created_at|timesince }} ago {% if not notif.is_read %} {% endif %} {% if notif.url %} View {% endif %}
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

No notifications yet.

{% endif %}
{% block extra_css %} {% endblock %} {% endblock %}