{% if breadcrumbs is defined or table_view is defined or filter_info is defined %}
<nav class="navbar navbar-default navbar-fixed-bottom" role="navigation" style="background: white; height: auto; min-height: 0">
<div class="container-fluid" style="border-top: 1px solid black">
{% if breadcrumbs is defined %}
<ol class="breadcrumb" style="margin: 0; float: left; background: none">
{% for bcrumb in breadcrumbs %}
{% if bcrumb.href is defined %}
<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>
{% else %}
<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>
{% endif %}
{% endfor %}
</ol>
{% endif %}
{% if table_view is defined %}
<ol class="breadcrumb" style="margin: 0; float: right; background: none">
<li>
{% apply spaceless %}
{% if pagination is defined %}
{{ pagination.min + 1 }} – {{ pagination.max + 1 }} ({{ table_view.filteredRows }})
{% else %}
{{ table_view.filteredRows }}
{% endif %}
{% endapply %}
</li>
<li>{{ table_view.totalRows }}</li>
</ol>
{% endif %}
{% if filter_info is defined %}
<ol class="breadcrumb" style="margin: 0; float: right; background: none">
<li>
{% apply spaceless %}
{% if pagination is defined %}
{{ pagination.min + 1 }} – {{ pagination.max + 1 }} ({{ filter_info.filteredRows }})
{% else %}
{{ filter_info.filteredRows }}
{% endif %}
{% endapply %}
</li>
<li>{{ filter_info.totalRows }}</li>
</ol>
{% endif %}
</div><!-- /.container-fluid -->
</nav>
{% endif %}