{% extends 'admin/base.html.twig' %} {% block content %} {% set city_filter = app.request.get('city') %} {% set category_filter = app.request.get('category') %}

Список объектов

{% for label, messages in app.flashes(['success', 'warning', 'danger', 'info', 'primary']) %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %} {% for point in points %} {% set city_title = 'cities.' ~ point.city %} {% set type_title = 'categories.' ~ point.type %} {% if point.isActive %} {% else %} {% endif %} {% endfor %}
ID {% set cities = global_service.cities %} {% set categories = global_service.pointTypes %} Название Активен
{{ point.id }} {{ city_title|trans }} {{ type_title|trans }} {{ point.title }}ДаНет

{% endblock %} {% block admin_js_body %} {{ parent() }} {% endblock %}