diff options
Diffstat (limited to 'cgi/home.cgi')
-rw-r--r-- | cgi/home.cgi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cgi/home.cgi b/cgi/home.cgi index 655bdcb..470ada4 100644 --- a/cgi/home.cgi +++ b/cgi/home.cgi @@ -58,7 +58,11 @@ def graphic_collection(resp) $cgi.table(class: "waste-table") { $cgi.tr { - $cgi.td { "⇓" } + tout = "" + (0..14).each { |i| + tout += $cgi.td(colspan: 2) { (Time.now + (i * 60*60*24)).date } + } + tout } + $cgi.tr { tout = "" |