Update HTML
This commit is contained in:
parent
bec6208f32
commit
3f7620d1b9
2 changed files with 6 additions and 6 deletions
|
@ -34,6 +34,7 @@
|
||||||
(defmacro navbar (&body body)
|
(defmacro navbar (&body body)
|
||||||
`(spinneret:with-html
|
`(spinneret:with-html
|
||||||
(:nav :class "navbar bg-body-tertiary navbar-expand-sm mb-5"
|
(:nav :class "navbar bg-body-tertiary navbar-expand-sm mb-5"
|
||||||
|
:aria-label "Primary Navigation"
|
||||||
(:div :class "container"
|
(:div :class "container"
|
||||||
,@body))))
|
,@body))))
|
||||||
|
|
||||||
|
|
|
@ -6,11 +6,10 @@
|
||||||
(with-page (:title "Survey Details")
|
(with-page (:title "Survey Details")
|
||||||
(navbar-en)
|
(navbar-en)
|
||||||
(:section :class "container"
|
(:section :class "container"
|
||||||
(:h2 (format nil "Survey ID: ~a" (ml-survey:survey-id survey)))
|
(:p (format nil "Survey ID: ~a" (ml-survey:survey-id survey)))
|
||||||
(:h3 "Properties")
|
(:h2 "Properties")
|
||||||
(ml-survey:survey-html survey)
|
(ml-survey:survey-html survey)
|
||||||
(when results
|
(when results
|
||||||
(:h3 "Questionnaire Results")
|
(:h2 "Questionnaire Results")
|
||||||
(:ul
|
(:ul (loop for result in results do
|
||||||
(loop for result in results do
|
|
||||||
(:li result)))))))
|
(:li result)))))))
|
||||||
|
|
Loading…
Add table
Reference in a new issue