<li><a href="{{link("")}}">Home</a></li>
{{menulink("about", "About")}}
{{menulink("blog", "Blog")}}
- <li><a href="https://postgresql.us/events/sessions/pgopen2017/">Sessions</a></li>
+ <li><a href="https://postgresql.us/events/schedule/pgopen2017/">Schedule</a></li>
{{menulink("tickets", "Registration")}}
{{menulink("venue", "Venue & Hotel")}}
{{menulink("sponsors", "Sponsors")}}
--- /dev/null
+{%extends "base.html" %}
+{%block title%}Conference Schedule - {{conference}}{%endblock%}
+{%block extrahead%}
+<style media="print">
+#pgHeaderContainer, #pgSideWrap { display:none; }
+div.schedwrap {
+ font-size: 69%;
+}
+</style>
+<style>
+div.schedwrap {
+ border: 1px solid black;
+ position: relative;
+}
+div.sessblock {
+ border: 1px solid gray;
+ overflow:hidden;
+ position: absolute;
+}
+div.roomheader {
+ font-weight: bold;
+ font-size: 1.2em;
+ top: 0px;
+ text-align: center;
+}
+div.sessblock a {
+ text-decoration: none;
+ color: black;
+}
+{%for track in tracks%}
+div.track{{track.id}} {
+ background-color: {{track.color}};
+}
+{%endfor%}
+</style>
+{%endblock%}
+{%block content%}
+<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 %}
+<h2>{{day.day|datetimeformat("%A, %B %d")}}</h2>
+<div class="schedwrap" style="height: {{day.schedule_height}}px; width: {{day.schedule_width}}px;">
+{%for room in day.rooms%}
+ <div class="sessblock roomheader" style="left: {{room.leftpos}}px; width: {{room.widthpos}}px; height: {{room.heightpos}}px;">
+ {{room.name}}
+ </div>
+{%endfor%}
+{%for session in day.sessions%}
+ <div class="sessblock track{{session.track.id}}" style="top: {{session.toppos}}px; left: {{session.leftpos}}px; width: {{session.widthpos}}px; height: {{session.heightpos}}px;">
+{%if session.id%}
+ <a href="session/{{session.id}}-{{session.title|slugify}}/">{{session.timeslot}}<br/>{{session.title}}</a>
+{%else%}
+ {{session.timeslot}} - {{session.title}}
+{%endif%}
+ {%for speaker in session.speakers %}{%if loop.first%}<br/>{%else%}, {%endif%}<i><a href="speaker/{{speaker.id}}-{{speaker.name|slugify}}/">{{speaker.name}}</a></i>{%endfor%}
+ </div>
+{%endfor%}
+</div>
+
+{%endfor%}
+
+<p>This schedule is also available in <a href="ical/">iCalendar</a> format.</p>
+
+{%endblock%}
{%block title%}Schedule | PostgresOpen 2017{%endblock%}
{%block pagetitle%}PostgresOpen 2017{%endblock%}
{%block content%}
-<!-- Main -->
-<h1>Schedule</h1>
+{% load staticfiles %}
+ <!-- Main -->
+ <section id="main" class="wrapper">
+ <div class="container">
-<hr>
-<h3>Schedule</h3>
-<p>
- You can find the full conference information at the
- <a href="{{conference.confurl}}">conference website</a>.
-</p><p>
- This schedule is subject to changes. This page will be updated when any
- changes occur. This schedule is also available in <a href="ical/">iCalendar</a> format.
-</p>
-<hr>
-{%for day in days%}
-<h2>{{day.day|datetimeformat("%A, %B %d")}}</h2>
-<div class="schedwrap" style="height: {{day.schedule_height}}px; width: {{day.schedule_width}}px;">
-{%for room in day.rooms%}
- <div class="sessblock roomheader" style="left: {{room.leftpos}}px; width: {{room.widthpos}}px; height: {{room.heightpos}}px;">
- {{room.name}}
- </div>
-{%endfor%}
-{%for session in day.sessions%}
- <div class="sessblock track{{session.track.id}}" style="top: {{session.toppos}}px; left: {{session.leftpos}}px; width: {{session.widthpos}}px; height: {{session.heightpos}}px;">
-{%if session.id%}
- <a href="session/{{session.id}}-{{session.title|slugify}}/">{{session.timeslot}}<br/>{{session.title}}</a>
-{%else%}
- {{session.timeslot}} - {{session.title}}
-{%endif%}
- {%for speaker in session.speakers %}{%if loop.first%}<br/>{%else%}, {%endif%}<i><a href="speaker/{{speaker.id}}-{{speaker.name|slugify}}/">{{speaker.name}}</a></i>{%endfor%}
- </div>
-{%endfor%}
-</div>
+ <header class="major">
+ <span class="header"><img src="{% static 'images/schedule.svg' %}" alt="" /></span>
+ <h2>Schedule</h2>
+ </header>
-{%endfor%}
+ <!-- Sponsorship -->
+ <section class="section">
+ <hr>
+ <h3>Schedule</h3>
+ <p>
+ The schedule has now been <a href="https://postgresql.us/events/schedule/pgopen2017/">published</a>!
+ </p>
+ <hr>
+ </section>
-<h2>Tracks</h2>
-{%for track in tracks%}
-<div class="track{{track.id}}">{{track.trackname}}</div>
-{%endfor%}
+
+ </div>
+ </section>
{% endblock %}