add: blocked users page

This commit is contained in:
trisua 2025-05-09 22:36:16 -04:00
parent 6893aeedb5
commit 3706764437
18 changed files with 427 additions and 178 deletions

View file

@ -1242,4 +1242,24 @@ show_kick=false, secondary=false) -%}
</div>
</div>
</dialog>
{% endif %} {%- endmacro %} {% macro supporter_ad(body="") -%} {% if
config.stripe and not is_supporter %}
<div
class="card w-full supporter_ad"
ui_ident="supporter_ad"
onclick="window.location.href = '/settings#/account/billing'"
>
<div class="card w-full flex flex-wrap items-center gap-2 justify-between">
{% if body %}
<b>{{ body }}</b>
{% else %}
<b>{{ text "general:label.supporter_motivation" }}</b>
{% endif %}
<a href="/settings#/account/billing" class="button small">
{{ icon "heart" }}
<span>{{ text "general:action.become_supporter" }}</span>
</a>
</div>
</div>
{% endif %} {%- endmacro %}