28 lines
1.0 KiB
PHTML
28 lines
1.0 KiB
PHTML
<ol class="breadcrumb ">
|
|
<li class="breadcrumb-item"><a href="{% url '' %}"><i class="fas fa-fw fa-tachometer-alt"></i> Tableau de bord</a></li>
|
|
|
|
{% foreach $this->breadcrumb ?? [] as $crumb %}
|
|
<li class="breadcrumb-item {{ ( $crumb['active'] ?? false ) ? 'active' : '' }}">
|
|
{% if ! ($crumb['active'] ?? false) %}
|
|
{? $last = $crumb ?}
|
|
|
|
<a href="{% url $crumb['url'] %}">
|
|
{% if $crumb['icon'] ?? false %}
|
|
<i class="fa fa-{{ $crumb['icon'] }}"></i>
|
|
{% endif %}
|
|
|
|
{{ $crumb['title'] }}
|
|
</a>
|
|
{% else %}
|
|
{% if $crumb['icon'] ?? false %}
|
|
<i class="fa fa-{{ $crumb['icon'] }}"></i>
|
|
{% endif %}
|
|
<span>{{ $crumb['title'] }}</span>
|
|
{% endif %}
|
|
</li>
|
|
{% endforeach %}
|
|
|
|
{% if $last ?? false %}
|
|
<li class="breadcrumb-last-item ml-auto"><a href="{{ url( $last['url']) }}"><i class="fas fa-chevron-circle-left"></i> Retour</a></li>
|
|
{% endif %}
|
|
</ol> |