{% extends 'notifications/base.html' %} {% load static %} {% block title %}Notifications - AdTlas{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Notifications

Manage your notifications and preferences

Settings {% if unread_notifications %} {% endif %}
{{ total_count }}

Total Notifications

{{ unread_count }}

Unread

{{ read_count }}

Read

{{ today_count }}

Today

Notifications {% if notifications.count %} {{ notifications.count }} {% endif %}
{% if notifications %}
{% for notification in notifications %}
{{ notification.title }} {% if not notification.is_read %} New {% endif %}
{{ notification.created_at|timesince }} ago

{{ notification.message|truncatechars:150 }}

{{ notification.notification_type.name }} {% if notification.notification_type.priority >= 4 %} High Priority {% endif %}
{% if not notification.is_read %} {% endif %}
{% endfor %}
{% if is_paginated %} {% endif %} {% else %}
No notifications found

You don't have any notifications matching the current filters.

{% if request.GET.status or request.GET.type or request.GET.priority or request.GET.search %} Clear Filters {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}