src/Products/NotificationsBundle/Resources/views/dashboard/profiles/view.html.twig line 1

Open in your IDE?
  1. {% extends '@ProductsNotifications/dashboard/profiles/includes/_view.html.twig' %}
  2. {% block content %}
  3.     {% if contacts|length %}
  4.         {% include '@ProductsNotifications/portal/management/_prefs.html.twig' with {
  5.             contacts: contacts,
  6.             routes_enable: 'app.notifications.dashboard.profiles.toggle_enabled',
  7.             routes_primary: 'app.notifications.dashboard.profiles.toggle_primary_preferences',
  8.             routes_secondary: 'app.notifications.dashboard.profiles.toggle_secondary_preferences',
  9.             headers: [
  10.                 {
  11.                     title: 'Urgent Messages',
  12.                     badge: 'badge badge--urgent badge--icon icon-exclamation',
  13.                 },
  14.                 {
  15.                     title: 'General Messages',
  16.                 },
  17.             ],
  18.         } %}
  19.     {% else %}
  20.         <p class="alert alert-danger text-center mt-2">No contacts for this profile.</p>
  21.     {% endif %}
  22. {% endblock %}