{% extends "index.html.twig" %} {% block searchBar %} {% set searchParams = { 'placeholder':'Tank-Typen durchsuchen', 'action' : path('tanktypes_search') } %} {{ parent() }} {% endblock %} {% block searchBtn %} {{ parent() }} {% endblock %} {% block searchTerm %} {% set resetPath = path('tanktypes_search',{reset: true}) %} {{ parent() }} {% endblock %} {% block breadcrumbMenu %} {% if is_granted('tanktype_create') %} Neuen Tank-Typ erstellen {% endif %} {% endblock %} {% block breadcrumb %} Tank-Typen {% endblock %} {% block body %}
Bezeichnung
Beschreibung
{% for tanktype in tanktypes %}
{{ tanktype.name }}
{{ tanktype.description }}
{% if is_granted('tanktype_edit') %} {% endif %} {% if is_granted('tanktype_delete') %} {% if tanktype.tanks|length == 0 %} {% else %} {% endif %} {% endif %}
{% else %}
Es wurden keine Tank-Typen gefunden
{% endfor %}
{% if tanktypes|length > 0 %} {% if pager.hasNextPage() or pager.hasPreviousPage()%} {{ pagerfanta(pager, 'twitter_bootstrap4',{'prev_message': '', 'next_message': ''}) }} {% endif %} {% endif %}
{% endblock %}