mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-27 03:41:21 +01:00
72 lines
2.5 KiB
HTML
72 lines
2.5 KiB
HTML
{% load settings %}
|
|
{% load i18n %}
|
|
<label class="swap swap-rotate btn btn-secondary btn-sm"
|
|
data-tippy-content="{% translate 'Toggle theme' %}">
|
|
<input type="checkbox"
|
|
hx-get="{% url 'toggle_theme' %}"
|
|
_="on load
|
|
if <html/>'s @data-theme is 'wygiwyh_dark' set my.checked to true end
|
|
end
|
|
on change
|
|
if my.checked set <html/>'s @data-theme to 'wygiwyh_dark'
|
|
else set <html/>'s @data-theme to 'wygiwyh_light'
|
|
end
|
|
end"
|
|
/>
|
|
|
|
<i class="fa-regular fa-sun swap-off"></i>
|
|
|
|
<i class="fa-regular fa-moon swap-on"></i>
|
|
</label>
|
|
|
|
<div class="dropdown dropdown-top dropdown-end">
|
|
<div role="button" class="btn btn-secondary btn-sm" data-bs-toggle="dropdown" aria-expanded="false">
|
|
<i class="fa-solid fa-cog"></i>
|
|
</div>
|
|
<ul class="dropdown-menu menu">
|
|
<li><a
|
|
hx-get="{% url 'user_settings' %}"
|
|
hx-target="#generic-offcanvas"
|
|
role="button">
|
|
<i class="fa-solid fa-gear 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 me-2 fa-fw"></i>{% translate 'Edit profile' %}</a></li>
|
|
<hr class="my-1 hr">
|
|
{% 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="my-1 hr">
|
|
<li>
|
|
<a hx-get="{% url 'invalidate_cache' %}" role="button">
|
|
<i class="fa-solid fa-broom me-2 fa-fw"></i>{% translate 'Clear cache' %}
|
|
</a>
|
|
</li>
|
|
<li><a href="{% url 'logout' %}"><i class="fa-solid fa-door-open me-2 fa-fw"></i
|
|
>{% translate 'Logout' %}</a></li>
|
|
<hr class="my-1 hr">
|
|
<li><a href="https://github.com/eitchtee/WYGIWYH/releases" target="_blank" rel="nofollow">v. {% settings "APP_VERSION" %}</a></li>
|
|
</ul>
|
|
</div>
|