41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% block morecss %}
|
|
ul.daylist { list-style:none; padding-left:0; }
|
|
li.daylistentry { font-size:162%; font-weight:700; }
|
|
li.even { background-color:#EDF5FF; }
|
|
li.odd { background-color:white; }
|
|
ul.roomlist {list-style:none; padding-left:0; margin-bottom:20px;}
|
|
li.roomlistentry { font-weight: 400; }
|
|
ul.sessionlist { list-style:none; padding-left:2em; margin-bottom:10px;}
|
|
li.sessionlistentry { font-size:62%; }
|
|
|
|
.lead:after { content: " (DO NOT POST)"; color:red; }
|
|
.offagenda:after { content:" (not published on agenda)"; }
|
|
|
|
{% endblock %}
|
|
|
|
{% block title %}Agenda for {{meeting}} by Room{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Agenda for {{meeting}} by Room</h1>
|
|
<ul class="daylist">
|
|
{% for day,sessions in ss_by_day.items %}
|
|
<li class="daylistentry {% cycle 'even' 'odd' %}">{{day|date:'l, j F Y'}}
|
|
{% regroup sessions by timeslot.get_hidden_location as room_list %}
|
|
<ul class="roomlist">
|
|
{% for room in room_list %}
|
|
<li class="roomlistentry">{{room.grouper|default:"Location Unavailable"}}
|
|
<ul class="sessionlist">
|
|
{% for ss in room.list %}
|
|
<li class="sessionlistentry {{ss.timeslot.type.slug}}">{{ss.timeslot.time|date:"H:i"}}-{{ss.timeslot.end_time|date:"H:i"}} {{ss.session.short_name}}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|
|
|