brass/web/templates/clothing/overview.html

21 lines
414 B
HTML

{% extends "nav.html" %}
{% block content %}
<section class="section">
<div class="container">
<h3 class="title is-3">
Anzugsordnungen
</h3>
<p class="content">zur Auswahl bei der Erstellung von Events</p>
<div class="box">
<ul>
{% for c in clothings %}
{% include "clothing_entry_read.html" %}
{% endfor %}
</ul>
</div>
</section>
{% endblock %}