From 200c0bc92203f2103805f1d09602b02800a8593a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sun, 10 Oct 2021 15:13:46 +0200 Subject: Mostly fix datetime values in frontend. --- module/calp/html/view/calendar/week.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'module') diff --git a/module/calp/html/view/calendar/week.scm b/module/calp/html/view/calendar/week.scm index 388c2f07..93d11c25 100644 --- a/module/calp/html/view/calendar/week.scm +++ b/module/calp/html/view/calendar/week.scm @@ -108,7 +108,7 @@ (class "vevent populate-with-uid")))) (tab-element (@ (title "Redigera")) - (span (@ (slot "label")) "📅") + (span (@ (slot "label")) "🖊") (vevent-edit (@ (slot "content") (class "populate-with-uid"))) )) @@ -195,7 +195,7 @@ (define (block-template) `(div (@ ; (id ,(html-id ev)) (data-calendar "unknown") - (class "event CAL_unknown" + (class " CAL_unknown" ;; ,(when (and (prop ev 'PARTSTAT) ;; (eq? 'TENTATIVE (prop ev 'PARTSTAT))) ;; " tentative") @@ -209,16 +209,16 @@ ;; was set on the surounding div, but the popup /needs/ to ;; overflow (for the tabs?). (div (@ (class "event-body")) - `(span (@ (class "repeating")) ; "↺" + (span (@ (class "repeating")) ; "↺" ) (span (@ (class "bind summary") (data-property "summary")) ; ,(format-summary ev (prop ev 'SUMMARY)) ) - `(span (@ (class "bind location") + (span (@ (class "bind location") (data-property "location"))) ;; Document symbol when we have text - `(span (@ (class "description")) + (span (@ (class "description")) ; "🗎" )) ) ) -- cgit v1.2.3