diff --git a/InvenTree/templates/InvenTree/settings/sidebar.html b/InvenTree/templates/InvenTree/settings/sidebar.html index b17b226f28..85e0b4ce94 100644 --- a/InvenTree/templates/InvenTree/settings/sidebar.html +++ b/InvenTree/templates/InvenTree/settings/sidebar.html @@ -4,10 +4,10 @@ {% load plugin_extras %} {% trans "User Settings" as text %} -{% include "sidebar_header.html" with text=text icon='fa-user' %} +{% include "sidebar_header.html" with text=text icon='fa-user-cog' %} {% trans "Account Settings" as text %} -{% include "sidebar_item.html" with label='account' text=text icon="fa-cog" %} +{% include "sidebar_item.html" with label='account' text=text icon="fa-sign-in-alt" %} {% trans "Display Settings" as text %} {% include "sidebar_item.html" with label='user-display' text=text icon="fa-desktop" %} {% trans "Home Page" as text %} diff --git a/InvenTree/templates/navbar.html b/InvenTree/templates/navbar.html index 551f1e99ed..7fd4a76eff 100644 --- a/InvenTree/templates/navbar.html +++ b/InvenTree/templates/navbar.html @@ -110,12 +110,12 @@ {% if user.is_staff and not demo %}
  • {% trans "Admin" %}
  • {% endif %} +
  • {% trans "Settings" %}
  • {% trans "Logout" %}
  • {% else %}
  • {% trans "Login" %}
  • {% endif %}
    -
  • {% trans "Settings" %}
  • {% if system_healthy or not user.is_staff %} diff --git a/InvenTree/templates/sidebar_header.html b/InvenTree/templates/sidebar_header.html index bb909a03a8..1aac8c9f7b 100644 --- a/InvenTree/templates/sidebar_header.html +++ b/InvenTree/templates/sidebar_header.html @@ -3,6 +3,6 @@
    {% if icon %}{% endif %} - {% if text %}{% endif %} + {% if text %}{% endif %}
    \ No newline at end of file