33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
<!-- Topbar Navbar -->
|
|
<ul class="navbar-nav ml-auto">
|
|
|
|
<div class="topbar-divider d-none d-sm-block"></div>
|
|
|
|
<!-- Nav Item - User Information -->
|
|
<li class="nav-item dropdown no-arrow">
|
|
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown"
|
|
aria-haspopup="true" aria-expanded="false">
|
|
<span class="mr-2 d-none d-lg-inline text-gray-600 small">{{prenom}} {{nom}}</span>
|
|
<img class="img-profile rounded-circle" src="https://source.unsplash.com/QAB-WJcbgJk/60x60">
|
|
</a>
|
|
<!-- Dropdown - User Information -->
|
|
<div class="dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="userDropdown">
|
|
{% if not rank==0 %}
|
|
<a class="dropdown-item" href="/user_profil">
|
|
<i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i>
|
|
Profil
|
|
</a>
|
|
<a class="dropdown-item" href="#">
|
|
<i class="fas fa-cogs fa-sm fa-fw mr-2 text-gray-400"></i>
|
|
Options
|
|
</a>
|
|
<div class="dropdown-divider"></div>
|
|
{% endif %}
|
|
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#logoutModal">
|
|
<i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i>
|
|
Déconnexion
|
|
</a>
|
|
</div>
|
|
</li>
|
|
|
|
</ul> |