tetratto/crates/app/src/public/html/profile/banned.lisp

34 lines
1.2 KiB
Common Lisp
Raw Normal View History

2025-06-01 12:25:33 -04:00
(text "{% extends \"root.html\" %} {% block head %}")
(title
(text "{{ profile.username }} (banned) - {{ config.name }}"))
(text "{% endblock %} {% block body %} {{ macros::nav() }}")
(main
2025-08-03 23:24:57 -04:00
("class" "flex flex_col gap_2")
2025-06-01 12:25:33 -04:00
(div
2025-08-03 23:24:57 -04:00
("class" "card_nest")
2025-06-01 12:25:33 -04:00
(div
2025-08-03 23:24:57 -04:00
("class" "card small flex items_center justify_between gap_2")
2025-06-01 12:25:33 -04:00
(div
2025-08-03 23:24:57 -04:00
("class" "flex items_center gap_2")
2025-06-01 12:25:33 -04:00
(text "{{ components::avatar(username=profile.username, size=\"24px\") }}")
(span
(text "{{ profile.username }}")))
(b
("class" "notification chip")
(text "{{ text \"auth:label.banned\" }}")))
(div
2025-08-03 23:24:57 -04:00
("class" "card flex flex_col gap_2")
2025-06-01 12:25:33 -04:00
(span
(text "{{ text \"auth:label.banned_message\" }}"))
(div
2025-08-03 23:24:57 -04:00
("class" "card w_full secondary flex gap_2")
2025-06-01 12:25:33 -04:00
(a
("href" "/")
("class" "button red lowered")
2025-06-01 12:25:33 -04:00
(text "{{ icon \"x\" }}")
(span
(text "{{ text \"general:action.back\" }}")))))))
(text "{% endblock %}")