aboutsummaryrefslogtreecommitdiff
path: root/module/output/html.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/output/html.scm')
-rw-r--r--module/output/html.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 2b8f52a9..4d8ebc05 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -452,9 +452,10 @@
[(day-date . events)
`(div (@ (class "cal-cell"))
(div (@ (class "date-info "
- ,(when (or (date< day-date start-date)
- (date< end-date day-date))
- "non-current")
+ ,(if (or (date< day-date start-date)
+ (date< end-date day-date))
+ "non-current"
+ "current")
))
(span (@ (class "day-number")) ,(date->string day-date "~e"))
,(when (= 1 (day day-date))