{% extends "cabinet/base_client.html" %} {% load i18n %} {% block title %}{% trans "Notifications" %}{% endblock %} {% block page_title %}{% trans "Account" %}{% endblock %} {% block sidebar_nav %}
  • {% trans "Security" %}
  • {% trans "Notifications" %}
  • {% trans "Privacy" %}
  • {% endblock %} {% block sidebar_settings_link %} {% trans "Back" %} {% endblock %} {% block cabinet_content %}
    {% trans "Notifications" %}
    {% for item in notifications %}
    {{ item.title }}
    {{ item.description }}
    {% empty %}
    {% trans "Appointment reminder" %}
    {% trans "24 hours before visit" %}
    {% trans "SMS notifications" %}
    {% trans "Booking status via SMS" %}
    {% trans "Email newsletter" %}
    {% trans "Promotions, news, and special offers" %}
    {% trans "Push notifications" %}
    {% trans "In browser or app" %}
    {% endfor %}
    {% endblock %}