{% extends "base.html" %} {% load django_bootstrap5 %} {% load community_utils %} {% load bootstrap_helpers %} {% block title %}Notification Settings{% endblock %} {% block headline %}Notification Settings{% endblock %} {% block content %} {% block navbar %} {% endblock navbar %}
{% block form %} {% csrf_token %} {% bootstrap_switch form.receive_mails %} {% bootstrap_switch form.mark_as_read_when_sent %} {% bootstrap_switch form.push_notifications %} {% bootstrap_switch form.display_notification_popups %}
{% bootstrap_switch form.collate_mails %}
{% bootstrap_form form exclude="receive_mails,collate_mails,mark_as_read_when_sent,push_notifications,display_notification_popups" %}
{% endblock form %} {% block form_buttons %} {% bootstrap_button "Update settings" button_type="submit" %} {% endblock form_buttons %}
{% endblock %}