bornhack-website/src/program/templates/program_day.html

49 lines
1.8 KiB
HTML
Raw Normal View History

{% extends 'program_base.html' %}
{% block program_content %}
2016-08-08 19:18:34 +00:00
<h2>{{ date|date:"l, F jS" }}</h2>
{% for event in events %}
2016-08-07 12:36:43 +00:00
{% ifchanged event.event_type %}
{% if not forloop.first %}</div>{% endif %}
<h3>{{ event.event_type }}</h3>
<div style="display: flex; flex-wrap: wrap;">
{% endifchanged %}
2016-08-07 13:49:30 +00:00
<a class="event"
href="{% url 'event_detail' camp_slut=camp.slug slug=event.slug %}"
2016-08-07 12:36:43 +00:00
style="background-color: {{ event.event_type.color }}; border: 0; color: {% if event.event_type.light_text %}white{% else %}black{% endif %};">
<small>{{ event.start|date:"H:i" }} - {{ event.end|date:"H:i" }}</small>
<br />
{{ event }}
2016-08-08 22:48:56 +00:00
<br />
{% if event.speakers.exists %}
by {{ event.speakers.all|join:", " }}
{% endif %}
2016-08-07 13:49:30 +00:00
</a>
2016-08-07 12:36:43 +00:00
{% endfor %}
<table>
<tbody>
<table>
{% for timeslot in timeslots %}
<tr>
<td style="height: 50px; padding: 5px;">{{ timeslot.time }}</td>
{% for eventinstance in eventinstances %}
{% if eventinstance.when.lower.time == timeslot.time %}
<td style="background-color: {{ eventinstance.event.event_type.color }}; color: {% if event.event_type.light_text %}white{% else %}black{% endif %};" class="event" rowspan={{ eventinstance.timeslots }}>
<a style="color:inherit;" href="{% url 'event_detail' camp_slug=camp.slug slug=eventinstance.event.slug %}">
{{ eventinstance.event.title }}<br>
{{ eventinstance.when.lower.time }}-{{ eventinstance.when.upper.time }}
</a>
</td>
{% endif %}
{% endfor %}
</tr>
{% endfor %}
</table>
</tbody>
</table>
2016-08-08 18:56:59 +00:00
{% endblock program_content %}