diff options
author | Ernesto Rico Schmidt <e.rico.schmidt@gmail.com> | 2020-01-24 03:53:48 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2020-01-24 20:34:36 (GMT) |
commit | 943ce9db0959edee22dcdc6f613421862e345216 (patch) | |
tree | 912dc059425d70fdf737b3449c7479afbec76c5d /program/templates/week_schedule.html | |
parent | 254b72cd28d07149715f921a5286efe1e800192a (diff) |
more height to display the 5 min slot at 12 pm beginning next week
Diffstat (limited to 'program/templates/week_schedule.html')
-rw-r--r-- | program/templates/week_schedule.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/program/templates/week_schedule.html b/program/templates/week_schedule.html index ad6b012..d64a0d3 100644 --- a/program/templates/week_schedule.html +++ b/program/templates/week_schedule.html @@ -25,7 +25,12 @@ <div style="height: 60px;">09:00</div> <div style="height: 60px;">10:00</div> <div style="height: 60px;">11:00</div> + {% if current_year == '2020' and current_week >= '05' %} + <div style="height: 30px;">12:00</div> + <div style="height: 55px;">12:05</div> + {% else %} <div style="height: 60px;">12:00</div> + {% endif %} <div style="height: 60px;">13:00</div> <div style="height: 60px;">14:00</div> <div style="height: 60px;">15:00</div> @@ -101,7 +106,12 @@ <div style="height: 60px;">09:00</div> <div style="height: 60px;">10:00</div> <div style="height: 60px;">11:00</div> + {% if current_year == '2020' and current_week >= '05' %} + <div style="height: 30px;">12:00</div> + <div style="height: 55px;">12:05</div> + {% else %} <div style="height: 60px;">12:00</div> + {% endif %} <div style="height: 60px;">13:00</div> <div style="height: 60px;">14:00</div> <div style="height: 60px;">15:00</div> |