summaryrefslogtreecommitdiff
path: root/src/views/player.lisp
diff options
context:
space:
mode:
authorshoshin <shoshin@cicadas.surf>2023-03-13 21:52:18 -0500
committershoshin <shoshin@cicadas.surf>2023-03-13 21:52:18 -0500
commit12662d6a0fceb0c2adfdc4d0947800994bc85718 (patch)
treee57a899b0efedc077587757f8ecb14c2bcecf956 /src/views/player.lisp
parent58afc03ae572eb56cb5a3b7b685689433edc13c7 (diff)
Add: minor tweaks, player list item view in adventure
Diffstat (limited to 'src/views/player.lisp')
-rw-r--r--src/views/player.lisp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/views/player.lisp b/src/views/player.lisp
index 5a3d074..9150626 100644
--- a/src/views/player.lisp
+++ b/src/views/player.lisp
@@ -16,3 +16,7 @@
(with-html
(:input :type "checkbox" :id (uid player) :name "POSSIBLE-SEER" :value (uid player))
(:label :for (uid player) (nickname player))))
+
+(defrender :list-item ((player player))
+ (with-html
+ (nickname player)))