{% extends "base.html" %} {% load static %} {% block title %}Notification Settings - {{ block.super }}{% endblock %} {% block content %}

Notification Settings

Back to Notifications
{% csrf_token %}
Email Notifications
{{ form.email_enabled }}
{{ form.email_frequency }}

Email Notification Types
{{ form.email_appointments }}
{{ form.email_lab_results }}
{{ form.email_medications }}
{{ form.email_billing }}
{{ form.email_emergency }}
{{ form.email_system }}
{{ form.email_clinical }}
{{ form.email_administrative }}
SMS Notifications
{{ form.sms_enabled }}
{{ form.phone_number }}

SMS Notification Types
{{ form.sms_appointments }}
{{ form.sms_lab_results }}
{{ form.sms_medications }}
{{ form.sms_emergency }}
{{ form.sms_billing }}
SMS Quiet Hours: SMS notifications will not be sent between 10 PM and 8 AM unless marked as emergency.
Push Notifications
{{ form.push_enabled }}

Push Notification Types
{{ form.push_appointments }}
{{ form.push_lab_results }}
{{ form.push_medications }}
{{ form.push_billing }}
{{ form.push_emergency }}
{{ form.push_system }}
{{ form.push_clinical }}
{{ form.push_messages }}
In-App Notifications
{{ form.in_app_enabled }}

{{ form.show_desktop_notifications }}
{{ form.play_notification_sound }}
{{ form.notification_position }}
{{ form.auto_dismiss_time }}
Priority Settings
Critical Notifications
{{ form.critical_override_quiet_hours }}
{{ form.critical_all_channels }}
{{ form.critical_repeat_until_read }}
Escalation Settings
{{ form.escalation_delay }}
{{ form.escalation_contact }}
Quiet Hours
{{ form.quiet_hours_enabled }}
{{ form.quiet_hours_start }}
{{ form.quiet_hours_end }}
{{ form.quiet_weekends }}
{{ form.quiet_holidays }}
Current Settings
Email: {% if form.email_enabled.value %}Enabled{% else %}Disabled{% endif %}
SMS: {% if form.sms_enabled.value %}Enabled{% else %}Disabled{% endif %}
Push: {% if form.push_enabled.value %}Enabled{% else %}Disabled{% endif %}
In-App: {% if form.in_app_enabled.value %}Enabled{% else %}Disabled{% endif %}
Quiet Hours: {% if form.quiet_hours_enabled.value %}Active{% else %}Inactive{% endif %}
Quick Presets
Test Notifications

Test your notification settings to ensure they work correctly.

Help & Tips

Email notifications are sent to your registered email address. You can choose to receive them immediately, in a daily digest, or weekly summary.

SMS notifications are sent to your mobile phone. Standard messaging rates may apply. Emergency notifications will override quiet hours.

During quiet hours, only critical and emergency notifications will be sent. All other notifications will be queued and delivered when quiet hours end.
{% endblock %}