{% extends '@ProductsNotifications/dashboard/profiles/includes/_view.html.twig' %}
{% block content %}
{% if contacts|length %}
{% include '@ProductsNotifications/portal/management/_prefs.html.twig' with {
contacts: contacts,
routes_enable: 'app.notifications.dashboard.profiles.toggle_enabled',
routes_primary: 'app.notifications.dashboard.profiles.toggle_primary_preferences',
routes_secondary: 'app.notifications.dashboard.profiles.toggle_secondary_preferences',
headers: [
{
title: 'Urgent Messages',
badge: 'badge badge--urgent badge--icon icon-exclamation',
},
{
title: 'General Messages',
},
],
} %}
{% else %}
<p class="alert alert-danger text-center mt-2">No contacts for this profile.</p>
{% endif %}
{% endblock %}