diff --git a/pinaxcon/templates/symposion/schedule/schedule_conference.html b/pinaxcon/templates/symposion/schedule/schedule_conference.html index 5c48f608f3fd55ac6701d45a266b4c288eb5fd2a..06c73e7dcdd02c7a939be16fa85b4c4760738863 100644 --- a/pinaxcon/templates/symposion/schedule/schedule_conference.html +++ b/pinaxcon/templates/symposion/schedule/schedule_conference.html @@ -46,7 +46,7 @@ {{ timetable.day.date|date:"l" }}, {{ timetable.day.date }} -

Conference times are in {{ settings.LCA_START|date:'T' }} (UTC{{ settings.LCA_START|date:'O' }}). Current talks will be highlighted.

+

Conference times are in {{ settings.LCA_START|date:'T' }} (UTC{{ settings.LCA_START|date:'O' }}). Current talks will be highlighted.

{% include "symposion/schedule/_grid.html" %}
diff --git a/pinaxcon/templates/symposion/schedule/schedule_detail.html b/pinaxcon/templates/symposion/schedule/schedule_detail.html index e9eafa23a46c1ece4b97711e7a628737b3addd93..001a54bdcf6544a38a72d0a7e574c998565687ef 100644 --- a/pinaxcon/templates/symposion/schedule/schedule_detail.html +++ b/pinaxcon/templates/symposion/schedule/schedule_detail.html @@ -11,12 +11,12 @@ {% block content %} {% cache 600 "schedule-detail-table" schedule.section %} {% for timetable in days %} -
+

{{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}

-

Conference times are in {{ settings.LCA_START|date:'T' }} (UTC{{ settings.LCA_START|date:'O' }}). Current talks will be highlighted.

+

Conference times are in {{ settings.LCA_START|date:'T' }} (UTC{{ settings.LCA_START|date:'O' }}). Current talks will be highlighted.

{% include "symposion/schedule/_grid.html" %}
diff --git a/pinaxcon/templates/symposion/schedule/schedule_edit.html b/pinaxcon/templates/symposion/schedule/schedule_edit.html index 32268ecd6f19b9fafa0fa520dc3447008ebf2daf..f46ad9c4398c1b26e39b7683a84386ee271a2be4 100644 --- a/pinaxcon/templates/symposion/schedule/schedule_edit.html +++ b/pinaxcon/templates/symposion/schedule/schedule_edit.html @@ -24,7 +24,7 @@

{{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}

-

Conference times are in {{ settings.LCA_START|date:'T' }} (UTC{{ settings.LCA_START|date:'O' }}). Current talks will be highlighted.

+

Conference times are in {{ settings.LCA_START|date:'T' }} (UTC{{ settings.LCA_START|date:'O' }}). Current talks will be highlighted.

{% include "symposion/schedule/_grid.html" with edit_schedule=True %}
diff --git a/static/src/js/schedule.js b/static/src/js/schedule.js index f23f3c69d856580a4364a841e4fc1ceae027b538..4468dc411ab5fa393d9d8cd12554c202f884765d 100644 --- a/static/src/js/schedule.js +++ b/static/src/js/schedule.js @@ -134,7 +134,7 @@ $(function() { var clock = $('div.conf-clock'); if (clock.length === 0) { var template = document.createElement('template'); - template.innerHTML = '
'; + template.innerHTML = '
'; var clockDiv = template.content.firstChild; document.body.appendChild(clockDiv); clock = $(clockDiv); diff --git a/static/src/scss/app.scss b/static/src/scss/app.scss index 20d0b7d30b2fe22664e58d0db938bd802c28c5fa..d34c68d05e23cbae7e21793301ce6d5556ddec1f 100644 --- a/static/src/scss/app.scss +++ b/static/src/scss/app.scss @@ -122,4 +122,8 @@ label.label-required:after { content: ' *'; } opacity: 100 !important; } } + + .timetable-day:not(:first-child) { + break-before: page; + } }