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

54 lines
2.2 KiB
HTML
Raw Normal View History

{% extends 'schedule_base.html' %}
{% load commonmark %}
{% block schedule_content %}
{% if eventinstances %}
{% for day in camp.camp_days %}
{{ day.lower.date|date:"D d/m" }} <br />
<div style="display: flex; flex-wrap: wrap;">
{% for eventinstance in eventinstances %}
{% if eventinstance.schedule_date == day.lower.date %}
2016-08-07 13:49:30 +00:00
<a class="event"
href="{% url 'event_detail' camp_slug=camp.slug slug=eventinstance.event.slug %}"
style="background-color: {{ eventinstance.event.event_type.color }}; color: {% if eventinstance.event.event_type.light_text %}white{% else %}black{% endif %};"
data-toggle="modal"
data-target="#{{ eventinstance.event.slug }}"
data-remote=false>
2017-03-15 20:54:57 +00:00
<small>{{ eventinstance.when.lower|date:"H:i" }} - {{ eventinstance.when.upper|date:"H:i" }}</small>
<span class="pull-right" style="font-family: 'FontAwesome';">&#x{{ eventinstance.location.icon }};</span>
2016-08-07 12:36:43 +00:00
<br />
{{ eventinstance.event.title }}
2016-08-08 22:48:56 +00:00
<br />
2016-08-07 13:49:30 +00:00
</a>
{% endif %}
<div class="modal" id="{{ eventinstance.event.slug }}" tabindex="-1" role="dialog" aria-labelledby="{{ eventinstance.event.slug }}-label">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="{{ eventinstance.event.slug }}-label">{{ eventinstance.event.title }}</h4>
</div>
<div class="modal-body">
{{ eventinstance.event.abstract|commonmark}}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default pull-left" data-dismiss="modal">Close</button>
<a class="btn btn-success"><i class="fa fa-star"></i> Favorite</a>
<a class="btn btn-info" href="{% url 'event_detail' camp_slug=camp.slug slug=eventinstance.event.slug %}"><i class="fa fa-info"></i> More</a>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
<hr />
{% endfor %}
{% else %}
2017-04-09 15:52:41 +00:00
<h2>No scheduled events for {{ camp.title }} yet!</h2>
{% endif %}
{% endblock schedule_content %}