33 lines
1.2 KiB
Common Lisp
33 lines
1.2 KiB
Common Lisp
(text "{% extends \"root.html\" %} {% block head %}")
|
|
(title
|
|
(text "{{ profile.username }} (banned) - {{ config.name }}"))
|
|
|
|
(text "{% endblock %} {% block body %} {{ macros::nav() }}")
|
|
(main
|
|
("class" "flex flex_col gap_2")
|
|
(div
|
|
("class" "card_nest")
|
|
(div
|
|
("class" "card small flex items_center justify_between gap_2")
|
|
(div
|
|
("class" "flex items_center gap_2")
|
|
(text "{{ components::avatar(username=profile.username, size=\"24px\") }}")
|
|
(span
|
|
(text "{{ profile.username }}")))
|
|
(b
|
|
("class" "notification chip")
|
|
(text "{{ text \"auth:label.banned\" }}")))
|
|
(div
|
|
("class" "card flex flex_col gap_2")
|
|
(span
|
|
(text "{{ text \"auth:label.banned_message\" }}"))
|
|
(div
|
|
("class" "card w_full secondary flex gap_2")
|
|
(a
|
|
("href" "/")
|
|
("class" "button red lowered")
|
|
(text "{{ icon \"x\" }}")
|
|
(span
|
|
(text "{{ text \"general:action.back\" }}")))))))
|
|
|
|
(text "{% endblock %}")
|