{% extends "index.html.twig" %} {% block searchBar %} {% set searchParams = { 'placeholder':'Tanks durchsuchen', 'action' : path('tanks_search') } %} {{ parent() }} {% endblock %} {% block searchBtn %} {{ parent() }} {% endblock %} {% block searchTerm %} {% set resetPath = path('tanks_search',{reset: true}) %} {{ parent() }} {% endblock %} {% block breadcrumbMenu %} {% if is_granted('tank_create') %} Neuen Tank erstellen {% endif %} {% endblock %} {% block breadcrumb %} Tanks {% endblock %} {% block body %}
Bezeichnung
Firma
Beschreibung
Tank-Typ
Gasart
Topas ID
Basi disponiert
{% for tank in tanks %}
{{ tank.name }}
{% if companies[tank.topasID] is defined %} {{ companies[tank.topasID] }}
{% else %} Keine Firma zugewiesen {% endif %}
{{ tank.description }}
{{ tank.tanktype.name }}
{{ tank.gastype.name|raw }}
{{ tank.topasID }}
{% if tank.basidispo %} {% endif %}
{% if is_granted('tank_edit') %} {% endif %} {% if is_granted('tank_delete') %} {% endif %}
{% else %}
Es wurden keine Tanks gefunden
{% endfor %}
{% if tanks|length > 0 %} {% if pager.hasNextPage() or pager.hasPreviousPage()%} {{ pagerfanta(pager, 'twitter_bootstrap4',{'prev_message': '', 'next_message': ''}) }} {% endif %} {% endif %}
{% endblock %}