35 lines
744 B
HTML
35 lines
744 B
HTML
{% extends "nav.html" %}
|
|
|
|
{% block content %}
|
|
<section class="section">
|
|
<div class="container">
|
|
<div class="level">
|
|
<div class="level-left">
|
|
<h3 class="title is-3">
|
|
Veranstaltungsorte im Bereich
|
|
</h3>
|
|
</div>
|
|
<div class="level-right">
|
|
<a class="button" href="/event/new">Neues Event für diesen Tag</a>
|
|
</div>
|
|
</div>
|
|
|
|
{% if locations.len() == 0 %}
|
|
<div class="box">
|
|
<h5 class="title is-5">keine Orte vorhanden</h5>
|
|
</div>
|
|
{% else %}
|
|
{% for location in locations %}
|
|
<div class="box">
|
|
<h5 class="title is-5">{{ location.name }}</h5>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</div>
|
|
</section>
|
|
</section>
|
|
|
|
<script>
|
|
</script>
|
|
{% endblock %}
|