takahe/templates/settings/_menu.html

39 lines
1.7 KiB
HTML
Raw Normal View History

<nav>
2023-04-27 06:54:38 +00:00
{% if identity %}
{% include "identity/_identity_banner.html" %}
2023-04-28 01:09:16 +00:00
<h3>Settings</h3>
2023-04-27 06:54:38 +00:00
<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-28 01:09:16 +00:00
<a href="{% url "settings_follows" handle=identity.handle %}" {% if section == "follows" %}class="selected"{% endif %} title="Follows">
<i class="fa-solid fa-arrow-right-arrow-left"></i>
<span>Follows</span>
</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-28 01:09:16 +00:00
<h3>Tools</h3>
<a href="{% url "compose" handle=identity.handle %}" {% if section == "compose" %}class="selected"{% endif %} title="Compose">
<i class="fa-solid fa-pen-to-square"></i>
<span>Compose</span>
</a>
<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>