{% extends 'layouts/base.html' %} {% load i18n %} {% load static %} {% block title %}{% trans "Notifications" %} - PX360{% endblock %} {% block content %}

{% trans "Notifications" %}

{% trans "View and manage your notifications" %}

{% if unread_count > 0 %} {% endif %} {% if notifications %} {% endif %}
{% trans "All" %} {% trans "Unread" %} {% if unread_count > 0 %} {{ unread_count }} {% endif %} {% trans "Read" %}
{% if notifications %}
{% for notification in notifications %}

{{ notification.get_title }}

{{ notification.get_message }}

{{ notification.created_at|timesince }} {% trans "ago" %} {% if not notification.is_read %} {% trans "New" %} {% endif %}
{% if not notification.is_read %} {% endif %}
{% endfor %}
{% if notifications.has_other_pages %}
{% if notifications.has_previous %} {% endif %} {{ notifications.number }} / {{ notifications.paginator.num_pages }} {% if notifications.has_next %} {% endif %}
{% endif %} {% else %}

{% if filter == 'unread' %} {% trans "No unread notifications" %} {% elif filter == 'read' %} {% trans "No read notifications" %} {% else %} {% trans "No notifications" %} {% endif %}

{% if filter == 'unread' %} {% trans "You're all caught up!" %} {% else %} {% trans "You don't have any notifications yet." %} {% endif %}

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