summaryrefslogtreecommitdiff
path: root/www/weeks.html
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-06-22 15:36:18 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-06-22 15:36:34 (GMT)
commitfa44b1f132b05bcc22e7f1a2ba29d0ef36885c58 (patch)
tree7de1a64a6ae7fc68fda8af7521844e749d3b8bda /www/weeks.html
parentd67ba4c202d23b27c07470d7527034e26026ca67 (diff)
added buttons to scroll in rd week view
Diffstat (limited to 'www/weeks.html')
-rw-r--r--www/weeks.html55
1 files changed, 33 insertions, 22 deletions
diff --git a/www/weeks.html b/www/weeks.html
index 13ee0e5..42c8e29 100644
--- a/www/weeks.html
+++ b/www/weeks.html
@@ -15,33 +15,44 @@
</head>
<body>
<div id="container">
- <div id="clock">
- <span class="current-week"></span>
- <span class="clock-date"></span>
- <span class="clock-time"></span>
- </div>
+ <div id="leftcol">
+ <div id="title">
+ <h1>Rivendell Wochenplan</h1>
+ </div>
- </div>
+ <div id="clock">
+ <h2>aktuelle Woche:</h2>
+ <span class="current-week"></span>
+ <span class="clock-date"></span>
+ <span class="clock-time"></span>
+ </div>
- <div id="weeks">
- <table id="calendar">
- <tr>
- <th></th>
- <th></th>
- <th>Mo</th>
- <th>Di</th>
- <th>Mi</th>
- <th>Do</th>
- <th>Fr</th>
- <th>Sa</th>
- <th>So</th>
- <th></th>
- </tr>
- </table>
+ <div id="buttons">
+ <input id="btn-earlier" type="button" value="Früher"></input>
+ <input id="btn-later" type="button" value="Später"></input>
+ </div>
+ </div>
+
+ <div id="rightcol">
+ <table id="calendar">
+ <tr>
+ <th></th>
+ <th></th>
+ <th>Mo</th>
+ <th>Di</th>
+ <th>Mi</th>
+ <th>Do</th>
+ <th>Fr</th>
+ <th>Sa</th>
+ <th>So</th>
+ <th></th>
+ </tr>
+ </table>
+ </div>
</div>
<script type="text/javascript">
- <!-- clock_init(); -->
+ clock_init();
calendar_init();
</script>