takahe/templates/settings/_menu.html

28 lines
1.2 KiB
HTML
Raw Normal View History

<nav>
2023-04-27 06:54:38 +00:00
{% if identity %}
{% include "identity/_identity_banner.html" %}
<a href="{% url "settings_profile" handle=identity.handle %}" {% if section == "profile" %}class="selected"{% endif %} title="Profile">
2023-02-26 07:10:54 +00:00
<i class="fa-solid fa-user"></i>
<span>Profile</span>
2022-11-18 00:43:00 +00:00
</a>
2023-04-27 06:54:38 +00:00
<a href="{% url "settings_interface" handle=identity.handle %}" {% if section == "interface" %}class="selected"{% endif %} title="Interface">
2023-02-26 07:10:54 +00:00
<i class="fa-solid fa-display"></i>
<span>Interface</span>
2022-11-18 00:43:00 +00:00
</a>
2023-04-27 06:54:38 +00:00
<a href="{% url "settings_import_export" handle=identity.handle %}" {% if section == "importexport" %}class="selected"{% endif %} title="Interface">
2023-02-26 07:10:54 +00:00
<i class="fa-solid fa-cloud-arrow-up"></i>
<span>Import/Export</span>
</a>
2023-02-26 07:10:54 +00:00
<hr>
2023-04-27 06:54:38 +00:00
{% endif %}
2022-11-18 00:43:00 +00:00
<h3>Account</h3>
2022-11-23 02:03:19 +00:00
<a href="{% url "settings_security" %}" {% if section == "security" %}class="selected"{% endif %} title="Login &amp; Security">
2023-02-26 07:10:54 +00:00
<i class="fa-solid fa-key"></i>
<span>Login &amp; Security</span>
2022-11-18 00:43:00 +00:00
</a>
2023-01-14 17:32:48 +00:00
<a href="{% url "logout" %}">
2023-02-26 07:10:54 +00:00
<i class="fa-solid fa-right-from-bracket" title="Logout"></i>
<span>Logout</span>
</a>
</nav>