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

Notification Preferences

Customize how and when you receive notifications

{% csrf_token %}
Global Settings
Email Notifications

Receive notifications via email

In-App Notifications

Show notifications in the application

Quiet Hours
Notification Types
{% for notification_type in notification_types %}
{{ notification_type.name }}

{{ notification_type.description|truncatechars:80 }}

{% if notification_type.priority == 5 %} Critical {% elif notification_type.priority == 4 %} High {% elif notification_type.priority == 3 %} Normal {% elif notification_type.priority == 2 %} Low {% else %} Very Low {% endif %}
{% if notification_type.can_be_disabled %}
{% if notification_type.supports_email %}
{% endif %} {% if notification_type.supports_in_app %}
{% endif %} {% else %}
This notification type cannot be disabled
{% endif %}
{% endfor %}
Back to Notifications
{% endblock %} {% block extra_js %} {% endblock %}