2016-08-08 18:41:54 +00:00
|
|
|
{% extends 'schedule_base.html' %}
|
2016-08-08 17:36:13 +00:00
|
|
|
|
2016-08-08 18:54:03 +00:00
|
|
|
{% block schedule_content %}
|
2016-08-08 17:36:13 +00:00
|
|
|
<p class="lead">
|
|
|
|
An alphabetical list of all talks, workshops, keynotes and other events
|
|
|
|
at BornHack 2016.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<div class="list-group">
|
|
|
|
{% for event in event_list %}
|
2016-08-08 18:59:21 +00:00
|
|
|
{% if event.event_type.name != "Facilities" %}
|
2016-08-08 17:50:35 +00:00
|
|
|
<a href="{% url 'schedule:event' slug=event.slug %}" class="list-group-item">
|
2016-08-08 18:54:03 +00:00
|
|
|
<small style="background-color: {{ event.event_type.color }}; border: 0; color: {% if event.event_type.light_text %}white{% else %}black{% endif %}; display: inline-block; padding: 5px;">
|
|
|
|
{{ event.event_type.name }}
|
|
|
|
</small>
|
2016-08-08 17:36:13 +00:00
|
|
|
{{ event.title }}
|
2016-08-08 18:59:21 +00:00
|
|
|
{% if event.speakers.exists %}
|
|
|
|
by {{ event.speakers.all|join:", " }}
|
|
|
|
{% endif %}
|
2016-08-08 17:36:13 +00:00
|
|
|
</a>
|
2016-08-08 18:27:43 +00:00
|
|
|
{% endif %}
|
2016-08-08 17:36:13 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2016-08-08 18:56:59 +00:00
|
|
|
{% endblock schedule_content %}
|