aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/vcomponent.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/calp/html/vcomponent.scm')
-rw-r--r--module/calp/html/vcomponent.scm20
1 files changed, 13 insertions, 7 deletions
diff --git a/module/calp/html/vcomponent.scm b/module/calp/html/vcomponent.scm
index 89020bd8..67634492 100644
--- a/module/calp/html/vcomponent.scm
+++ b/module/calp/html/vcomponent.scm
@@ -131,7 +131,7 @@
(name "summary") (required)
(value ,(prop ev 'SUMMARY)))))
- ,@(with-label "Heldag" `(input (@ (name "wholeday") (type "checkbox"))))
+ ,@(with-label "Heldag?" `(input (@ (name "wholeday") (type "checkbox"))))
,@(let ((start (prop ev 'DTSTART)))
(with-label "Start"
@@ -170,13 +170,19 @@
,@(with-label
"Kategorier"
- (awhen (prop ev 'CATEGORIES)
- (map (lambda (c) `(button (@ (class "category")) ,c))
- it))
+ `(div (@ (class "inline-edit"))
+ ,@(awhen (prop ev 'CATEGORIES)
+ (map (lambda (c)
+ `(input (@ (size 2)
+ (value ,c))))
+ it))
- `(input (@ (class "category")
- (type "text")
- (placeholder "category"))))
+ (input (@ (class "final")
+ (size 2)
+ (type "text")
+ ))))
+
+ (input (@ (type "submit")))
)))