diff options
author | shoshin <shoshin@cicadas.surf> | 2023-03-13 21:52:18 -0500 |
---|---|---|
committer | shoshin <shoshin@cicadas.surf> | 2023-03-13 21:52:18 -0500 |
commit | 12662d6a0fceb0c2adfdc4d0947800994bc85718 (patch) | |
tree | e57a899b0efedc077587757f8ecb14c2bcecf956 /src/views | |
parent | 58afc03ae572eb56cb5a3b7b685689433edc13c7 (diff) |
Add: minor tweaks, player list item view in adventure
Diffstat (limited to 'src/views')
-rw-r--r-- | src/views/player.lisp | 4 |
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))) |