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

45 lines
983 B
HTML

{% extends 'program_base.html' %}
{% load commonmark %}
{% load static %}
{% block program_content %}
<div class="row">
<table class="table">
<thead>
<th>When?</th>
<th>What?</th>
<th>Where?</th>
<th>Type</th>
</thead>
<tbody>
{% for instance in eventinstances %}
{% ifchanged instance.when.lower.date %}
<tr>
<td colspan=4><strong>{{ instance.when.lower.date|date:"l Y-m-d" }}</strong></td>
</tr>
{% endifchanged %}
<tr>
<td>{{ instance.when.lower|date:"H:i" }}-{{ instance.when.upper|date:"H:i" }}</td>
<td>
<i class="fas fa-video{% if not instance.event.video_recording %}-slash{% endif %}"></i>
<a href="{% url 'program:event_detail' camp_slug=camp.slug slug=instance.event.slug %}">{{ instance.event.title }}</a>
</td>
<td>{{ instance.location.name }}</td>
<td>{{ instance.event.event_type }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}