mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-27 02:58:40 +02:00
53 lines
2.0 KiB
HTML
53 lines
2.0 KiB
HTML
{% load settings %}
|
|
{% load i18n %}
|
|
<div class="tw:dropdown tw:dropdown-top tw:dropdown-end">
|
|
<div tabindex="0" role="button" class="tw:btn tw:btn-secondary tw:btn-sm">
|
|
<i class="fa-solid fa-cog"></i>
|
|
</div>
|
|
<ul tabindex="0" class="tw:dropdown-content tw:menu tw:bg-base-100 tw:rounded-box tw:z-[1] tw:w-52 tw:p-2 tw:shadow">
|
|
<li><a
|
|
hx-get="{% url 'user_settings' %}"
|
|
hx-target="#generic-offcanvas"
|
|
role="button">
|
|
<i class="fa-solid fa-gear tw:me-2 fa-fw"></i>{% translate 'Settings' %}</a></li>
|
|
<li><a
|
|
hx-get="{% url 'user_edit' pk=request.user.id %}"
|
|
hx-target="#generic-offcanvas"
|
|
role="button">
|
|
<i class="fa-solid fa-user tw:me-2 fa-fw"></i>{% translate 'Edit profile' %}</a></li>
|
|
<hr class="tw:my-1 tw:text-base-content/60">
|
|
{% spaceless %}
|
|
<li>
|
|
<a hx-get="{% url 'toggle_amount_visibility' %}" role="button">
|
|
{% if user.settings.hide_amounts %}
|
|
{% include 'users/generic/show_amounts.html' %}
|
|
{% else %}
|
|
{% include 'users/generic/hide_amounts.html' %}
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endspaceless %}
|
|
{% spaceless %}
|
|
<li>
|
|
<a hx-get="{% url 'toggle_sound_playing' %}" role="button">
|
|
{% if user.settings.mute_sounds %}
|
|
{% include 'users/generic/play_sounds.html' %}
|
|
{% else %}
|
|
{% include 'users/generic/mute_sounds.html' %}
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endspaceless %}
|
|
<hr class="tw:my-1 tw:text-base-content/60">
|
|
<li>
|
|
<a hx-get="{% url 'invalidate_cache' %}" role="button">
|
|
<i class="fa-solid fa-broom tw:me-2 fa-fw"></i>{% translate 'Clear cache' %}
|
|
</a>
|
|
</li>
|
|
<li><a href="{% url 'logout' %}"><i class="fa-solid fa-door-open tw:me-2 fa-fw"></i
|
|
>{% translate 'Logout' %}</a></li>
|
|
<hr class="tw:my-1 tw:text-base-content/60">
|
|
<li><a href="https://github.com/eitchtee/WYGIWYH/releases" target="_blank" rel="nofollow">v. {% settings "APP_VERSION" %}</a></li>
|
|
</ul>
|
|
</div>
|