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.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index bbd8ce91..3aeadd7e 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -684,6 +684,24 @@
,(btn href: (date->string (set (day start-date) 1) "/month/~1.html")
"månadsvy")
+ ,(btn id: "today-button"
+ href: (string-append
+ "/today" (case intervaltype
+ [(month) "/month"]
+ [(week) "/week"]
+ [else "/month"]))
+ "idag"))
+
+ (div (@ (class "jump-to"))
+ (form (@ (action ,(case intervaltype
+ [(month) "/month"]
+ [(week) "/week"]
+ [else "/month"])))
+ (input (@ (type date)
+ (name "start-date")
+ (value (date->string start-date "~1"))
+ ))
+ ,(btn "➔"))))
(details (@ (open) (style "grid-area: cal"))
(summary "Month overview")