vendor\project-biz\portal-bundle\src\Resources\views\layout\include.footer.html.twig line 1

Open in your IDE?
  1. {% if breadcrumbs is defined or table_view is defined or filter_info is defined %}
  2. <nav class="navbar navbar-default navbar-fixed-bottom" role="navigation" style="background: white; height: auto; min-height: 0">
  3.     <div class="container-fluid" style="border-top: 1px solid black">
  4.         {% if breadcrumbs is defined %}
  5.             <ol class="breadcrumb" style="margin: 0; float: left; background: none">
  6.                 {% for bcrumb in breadcrumbs %}
  7.                     {% if bcrumb.href is defined %}
  8.                         <li{% if bcrumb.attr is defined %}{{ bcrumb.attr }}{% endif %}><a href="{{ bcrumb.href }}">{% if bcrumb.label is null %}<i></i>{{ 'Erstellen' | trans }}</i>{% else %}{{ bcrumb.label | trans }}{% endif %}</a></li>
  9.                     {% else %}
  10.                         <li{% if bcrumb.attr is defined %}{{ bcrumb.attr }}{% endif %}>{% if bcrumb.label is null %}<i></i>{{ 'Erstellen' | trans }}</i>{% else %}{{ bcrumb.label | trans }}{% endif %}</li>
  11.                     {% endif %}
  12.                 {% endfor %}
  13.             </ol>
  14.         {% endif %}
  15.         {% if table_view is defined %}
  16.             <ol class="breadcrumb" style="margin: 0; float: right; background: none">
  17.                 <li>
  18.                     {% apply spaceless %}
  19.                         {% if pagination is defined %}
  20.                             {{ pagination.min + 1 }} – {{ pagination.max + 1 }} ({{ table_view.filteredRows }})
  21.                         {% else %}
  22.                             {{ table_view.filteredRows }}
  23.                         {% endif %}
  24.                     {% endapply %}
  25.                 </li>
  26.                 <li>{{ table_view.totalRows }}</li>
  27.             </ol>
  28.         {% endif %}
  29.         {% if filter_info is defined %}
  30.             <ol class="breadcrumb" style="margin: 0; float: right; background: none">
  31.                 <li>
  32.                     {% apply spaceless %}
  33.                         {% if pagination is defined %}
  34.                             {{ pagination.min + 1 }} – {{ pagination.max + 1 }} ({{ filter_info.filteredRows }})
  35.                         {% else %}
  36.                             {{ filter_info.filteredRows }}
  37.                         {% endif %}
  38.                     {% endapply %}
  39.                 </li>
  40.                 <li>{{ filter_info.totalRows }}</li>
  41.             </ol>
  42.         {% endif %}
  43.     </div><!-- /.container-fluid -->
  44. </nav>
  45. {% endif %}