{% extends '/admin/authenticated/layout/base.html.twig' %} {% import '/admin/components/helpers_macro.html.twig' as helpers %} {% block title %} Quotes {% endblock %} {% block content %} {{ helpers.notifications_success() }} {{ helpers.notifications_error() }} {{ helpers.notifications_warning() }}
Quotes
{% for item in quotes %} {% endfor %}
Author Quote Status
{{ item.author }} {{ item.text|raw }} {{ helpers.booleanIcon(item.active) }}
No data found.
{% include '/admin/authenticated/quote/_modalRemoveQuote.html.twig' %} {{ helpers.form_processing() }} {% endblock %}