symposion_app/symposion/templates/schedule/schedule_edit.html

82 lines
1.9 KiB
HTML
Raw Normal View History

{% extends "site_base.html" %}
{% block head_title %}Conference Schedule Edit{% endblock %}
{% block body_class %}full{% endblock %}
{% block right %}
{% endblock %}
{% block extra_head %}
<link rel="stylesheet" href="{{ STATIC_URL }}css/facebox.css" />
<style>
td {
font-size: 9pt;
}
td.slot {
text-align: center;
vertical-align: middle;
}
td.time {
vertical-align: top;
width: 50px;
font-size: 8pt;
padding-top: 0;
}
td.slot:hover .schedule-controls {
display: block;
}
.schedule-controls {
display: none;
font-size: 8pt;
}
.schedule-controls a {
text-decoration: none;
color: #000;
}
.schedule-controls a:hover {
color: #999;
}
/*
td.slot.recess,
td.slot.recess.colspan-1.rowspan-1,
td.slot.recess.colspan-1.rowspan-2 {
background: #ECFFFF;
}
td.slot.plenary {
background: #DCDCFF;
}
td.slot div.title {
font-weight: bold;
}
td.slot div.speaker {
font-style: italic;
font-size: 8pt;
}
td.colspan-1.rowspan-1 {
background: #FFFCC9;
}
td.colspan-1.rowspan-2 {
background: #FDA;
}
#facebox h3 {
margin-top: 0;
}
*/
</style>
{% endblock %}
2012-08-30 16:17:10 +00:00
{% block body_outer %}
<div class="row">
<div class="span12">
<h1>Schedule Edit</h1>
2012-08-30 16:17:10 +00:00
{% for timetable in days %}
<h2>{{ timetable.day.date }}</h2>
{% include "schedule/_grid.html" %}
{% endfor %}
</div>
</div>
{% endblock %}