diff options
author | Ernesto Rico Schmidt <e.rico.schmidt@gmail.com> | 2020-01-24 03:53:48 (GMT) |
---|---|---|
committer | Ernesto Rico Schmidt <e.rico.schmidt@gmail.com> | 2020-01-24 03:53:48 (GMT) |
commit | 639996ffeb25c4a48f47067b0613ec0925a1054b (patch) | |
tree | b9ed18ee70429ce005f85b7b75de0761ec532cd5 /program/templates/week_schedule.html | |
parent | 4392d193a96dae6a0efb2e22b42a8c55b3e7707f (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> |