{% extends '/layout/admin_layout.html.twig' %} {% import "macro/listing.html.twig" as listingMacro %} {% block title %}Management {% endblock %} {% block content %}
{{ listingMacro.bulkDeleteButton( path('app_management_bulk_delete'), csrf_token('delete') ) }}
{% for item in management %} {% else %} {% endfor %}
{{ listingMacro.listingHeaderCheckbox() }} # Value Created at Updated at
{{ listingMacro.listingCheckbox(item.id) }} {{ loop.index }} {{ item.value }} {{ item.createdAt ? item.createdAt|dtz : '' }} {% if item.createdBy %}
by {{ item.createdBy.username }} {% endif %}
{{ item.updatedAt ? item.updatedAt|dtz : '' }} {% if item.updatedBy %}
by {{ item.updatedBy.username }} {% endif %}
{% if item.canBeDeleted() %}
{% endif %}
No records found.
{{ include('//layout/_notifications.html.twig') }}
{% endblock %}