{% extends "index.html.twig" %} {% block searchBar %} {% set searchParams = { 'placeholder':'Gasart durchsuchen', 'action' : path('gastypes_search') } %} {{ parent() }} {% endblock %} {% block searchBtn %} {{ parent() }} {% endblock %} {% block searchTerm %} {% set resetPath = path('gastypes_search',{reset: true}) %} {{ parent() }} {% endblock %} {% block breadcrumbMenu %} {% if is_granted('gastype_create') %} Neue Gasart erstellen {% endif %} {% endblock %} {% block breadcrumb %} Gasart {% endblock %} {% block body %}
Oxaion Artikelnummer
Bezeichnung
Beschreibung
Umrechnungsfaktor
{% for gastype in gastypes %}
{{ gastype.oxaionnumber | raw }}
{{ gastype.name | raw }}
{{ gastype.description }}
{% if gastype.conversionfactor != 0 %} {{ gastype.conversionfactor }} {% endif %}
{% if is_granted('gastype_edit') %} {% endif %} {% if is_granted('gastype_delete') %} {% if gastype.tanks|length == 0 %} {% else %} {% endif %} {% endif %}
{% else %}
Es wurden keine Gasarten gefunden
{% endfor %}
{% if gastypes|length > 0 %} {% if pager.hasNextPage() or pager.hasPreviousPage() %} {{ pagerfanta(pager, 'twitter_bootstrap4',{'prev_message': '', 'next_message': ''}) }} {% endif %} {% endif %}
{% endblock %}