{% extends '@ProductsNotifications/base.html.twig' %}
{% import '@ProductsNotifications/dashboard/recipients/_macros.html.twig' as macros %}
{% block header %}
{% embed '@ui2022/page__header.html.twig' with {
title: list.name,
crumbs: {
items: [
{
text: 'Lists',
link: path('app.notifications.dashboard.lists.main'),
},
{
text: 'Browse Contacts',
link: path('app.notifications.dashboard.lists.view', {
list: list.id,
}),
},
],
},
} %}{% endembed %}
{% endblock %}
{% block content %}
<div class="row">
<div class="col">
{% include '@ProductsNotifications/dashboard/%s/includes/_filter.html.twig'|format(itemType) %}
<div id="{{ form.vars.id }}__results">
{% include '@ProductsNotifications/dashboard/%s/includes/_results.html.twig'|format(itemType) with {
sidepanel: 'sidepanel__result_view',
(itemType): items,
} %}
</div>
</div>
</div>
{% endblock %}
{% block modals %}
{{ parent() }}
{% include '@ui2022/schoolnow/modal--sidepanel.html.twig' with {
attr: {
id: 'sidepanel__result_view',
},
} %}
{% endblock %}