aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2020-02-17 11:11:04 +0100
committerHugo Hörnquist <hugo@hornquist.se>2020-02-17 11:11:04 +0100
commitfdbaeccd09afa0db9f7122c3b42c360d15d13b69 (patch)
tree38fc5002406f310dfea5fabc2dc4dd21dbc694ba /module
parentGet-time now always returns localtime. (diff)
downloadcalp-fdbaeccd09afa0db9f7122c3b42c360d15d13b69.tar.gz
calp-fdbaeccd09afa0db9f7122c3b42c360d15d13b69.tar.xz
Add some TODO's.
Diffstat (limited to 'module')
-rw-r--r--module/output/html.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 39172318..fe877ca0 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -243,7 +243,9 @@
(class "hidelink")) ,d))))))
`(table (@ (class "small-calendar"))
- (thead (tr ,@(map (lambda (d) `(td ,d)) '(MÅ TI ON TO FR LÖ SÖ))))
+ ;; NOTE Sunday first since my code assumes that is the first day of the week.
+ ;; TODO make displayed first day of the week configurable.
+ (thead (tr ,@(map (lambda (d) `(td ,d)) '(SÖ MÅ TI ON TO FR LÖ))))
(tbody ,@(let recur
((lst (let* ((month (month date))
(month-len (days-in-month date))