1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#6372: Implement layout improvements

This commit is contained in:
checktheroads
2021-06-22 17:20:17 -07:00
parent a8a9e061a1
commit eb0d5c996e
24 changed files with 564 additions and 153 deletions

View File

@@ -1,5 +1,5 @@
{% if request.user.is_authenticated %}
<span class="dropdown ms-0 ms-md-3">
<span class="dropdown ms-0 ms-md-3 profile-button">
<button
type="button"
aria-expanded="false"
@@ -25,12 +25,12 @@
</li>
<li>
<a class="dropdown-item" href="{% url 'user:profile' %}">
<i class="mdi mdi-account"></i> Profile
<i class="mdi mdi-account"></i> Profile & Settings
</a>
</li>
<li><hr class="dropdown-divider" /></li>
<li>
<a class="dropdown-item" href="{% url 'logout' %}">
<a class="dropdown-item text-danger" href="{% url 'logout' %}">
<i class="mdi mdi-logout-variant"></i> Log Out
</a>
</li>