Also show location on non-js event detail page.

This commit is contained in:
Víðir Valberg Guðmundsson 2018-08-10 16:26:25 +02:00
parent 5ae96cfa6d
commit 56875732dd

View file

@ -36,7 +36,7 @@
<h4>Instances</h4>
<ul class="list-group">
{% for ei in event.instances.all %}
<li class="list-group-item">{{ ei.when.lower|date:"l M. d H:i" }} - {{ ei.when.upper|date:"H:i" }}</li>
<li class="list-group-item">{{ ei.when.lower|date:"l M. d H:i" }} - {{ ei.when.upper|date:"H:i" }} at {{ ei.location.name }} <i class="fas fa-{{ei.location.icon}}"></i></li>
{% empty %}
No instances scheduled yet
{% endfor %}