summaryrefslogtreecommitdiff
path: root/src/views/adventure.lisp
blob: 8d4cebcc834a435196d52b0fbe6f87cf42970244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;;;; views/adventure.lisp -- views of for adventure instances

(in-package :dnd)


(defrender :inline ((adventure adventure))
  (with-html
      (:a :href (urlpath adventure) (title adventure))))

(defrender :option ((adventure adventure))
  (with-html
    (:option :value (uid adventure) (title adventure))))