bornhack-website/program/templates/event_list.html

17 lines
375 B
HTML
Raw Normal View History

2016-08-08 17:36:13 +00:00
{% extends 'base.html' %}
{% block content %}
<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 17:50:35 +00:00
<a href="{% url 'schedule:event' slug=event.slug %}" class="list-group-item">
2016-08-08 17:36:13 +00:00
{{ event.title }}
</a>
{% endfor %}
</div>
{% endblock content %}