fixing the form fixer...

This commit is contained in:
Chris Cochrun 2024-04-25 21:46:54 -05:00
parent b3851df8ab
commit 6cf35dea02

View file

@ -314,7 +314,9 @@ with the image attached"
(:table
(loop for row in form
do (:tr
(:th (car row))
(:th (string-capitalize
(string-replace-all
"-" (car row) " ")))
(:td (cdr row))))))))))))
(defun mail-health-form (form attachment)
@ -356,7 +358,9 @@ with the image attached"
(:table
(loop for row in form
do (:tr
(:th (string-capitalize (car row)))
(:th (string-capitalize
(string-replace-all
"-" (car row) " ")))
(:td (cdr row))))))))))))
(tbnl:define-easy-handler (health-form :uri "/health-form") ()