Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 48 additions & 68 deletions template/confreg/schedule.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{%extends conftemplbase %}
{%extends "base.html" %}
{%block title%}Conference Schedule - {{conference}}{%endblock%}
{%block extrahead%}
<style media="print">
Expand All @@ -19,13 +19,12 @@
}
div.roomheader {
font-weight: bold;
font-size: 0.8em;
font-size: 1.2em;
top: 0px;
text-align: center;
}
div.sessblock a {
text-decoration: none;
font-size: 0.7em;
color: black;
}
{%for track in tracks%}
Expand All @@ -36,72 +35,53 @@
</style>
{%endblock%}
{%block content%}
<!-- Content
================================================== -->
<section id="main" class="wrapper">
<div class="container">

<!-- Call for Papers -->
<header class="major">
<span class="header"><img src="/ext/{{conference.urlname}}/shared/images/calendar.svg" alt="" /></span>
<h2>Schedule - {{conference}}</h2>
</header>

<section class="section">
<hr>
<p>This schedule is also available for <a href="/m/{{conference.urlname}}/">mobile users</a>
and is available in <a href="ical/">iCalendar</a> format.</p>
<p>You can find the full conference information at the
<a href="{{conference.confurl}}">conference website</a>.
This schedule is subject to changes. This page will be updated when any
changes occur.
</p>
<p>A list of the sessions can be found <a href="/events/sessions/{{conference.urlname}}/">here</a>.
</p>
</section>
{%for day in days%}
<section class="section">
<div class="container">
<hr>
<h2 style="text-align:center;">{{day.day|date:"l, F d"}}</h2>
<div class="row">
{%for room in day.rooms%}
<div class="4u 12u$(medium)">
<section class="box">
<h4 style="text-align:center;"><div class="sessblock roomheader">
{{room.name}}
</div></h4>
<hr>
{%for session in day.sessions%}
{%if session.leftpos == room.leftpos or session.widthpos == 1198 %}
{%if session.id%}
<div class="sessblock track{{session.track.id}}" style="height: 120px;"><p>
<!--style="top: {{session.toppos}}px; left: {{session.leftpos}}px; width: {{session.widthpos}}px; height: {{session.heightpos}}px;-->
{%else%}
<div class="sessblock track{{session.track.id}}" style="height: 20px;"><p>
{%endif%}
{%if session.id%}
<a href="session/{{session.id}}-{{session.title|slugify}}/">{{session.timeslot}}<br/><b>{{session.title}}</b><br/></a>
{%else%}
{{session.timeslot}} - <b>{{session.title}}</b>
{%endif%}
{%for speaker in session.speakers %}{%if forloop.first%}{%else%}, {%endif%}<i><a href="speaker/{{speaker.id}}-{{speaker.name|slugify}}/">{{speaker.name}}</a></i>{%endfor%}
</p></div>
<hr>
{%endif%}
{%endfor%}
</section>
</div>
{%endfor%}
</div>
</div>
</section>
{%endfor%}



</div>
<h1>Conference Schedule - {{conference}}</h1>
<p>
You can find the full conference information at the
<a href="{{conference.confurl}}">conference website</a>.
This schedule is subject to changes. This page will be updated when any
changes occur.
</p>

{%for day in days%}
<section class="section">
<div class="container">
<hr>
<h2 style="text-align:center;">{{day.day|date:"l, F d"}}</h2>
<div class="row">
{%for room in day.rooms%}
<div class="4u 12u$(medium)">
<section class="box">
<h4 style="text-align:center;"><div class="sessblock roomheader">
{{room.name}}
</div></h4>
<hr>
{%for session in day.sessions%}
{%if session.leftpos == room.leftpos or session.widthpos == 1198 %}
{%if session.id%}
<div class="sessblock track{{session.track.id}}" style="height: 120px;"><p>
<!--style="top: {{session.toppos}}px; left: {{session.leftpos}}px; width: {{session.widthpos}}px; height: {{session.heightpos}}px;-->
{%else%}
<div class="sessblock track{{session.track.id}}" style="height: 20px;"><p>
{%endif%}
{%if session.id%}
<a href="session/{{session.id}}-{{session.title|slugify}}/">{{session.timeslot}}<br/><b>{{session.title}}</b><br/></a>
{%else%}
{{session.timeslot}} - <b>{{session.title}}</b>
{%endif%}
{%for speaker in session.speakers %}{%if forloop.first%}{%else%}, {%endif%}<i><a href="speaker/{{speaker.id}}-{{speaker.name|slugify}}/">{{speaker.name}}</a></i>{%endfor%}
</p></div>
<hr>
{%endif%}
{%endfor%}
</section>
</div>
{%endfor%}
</div>
</div>
</section>
{%endfor%}

<p>This schedule is also available in <a href="ical/">iCalendar</a> format.</p>

{%endblock%}