eventcally/templates/admin/admin_units.html
2020-06-14 19:46:37 +02:00

31 lines
818 B
HTML

{% extends "layout.html" %}
{% block title %}
{{ _('Admin Units') }}
{% endblock %}
{% block content %}
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{{ url_for('admin') }}">{{ _('Admin') }}</a></li>
<li class="breadcrumb-item active" aria-current="page">{{ _('Admin Units') }}</li>
</ol>
</nav>
<div class="table-responsive">
<table class="table table-sm table-bordered table-hover table-striped">
<thead>
<tr>
<th>{{ _('Name') }}</th>
</tr>
</thead>
<tbody>
{% for admin_unit in admin_units %}
<tr>
<td>{{ admin_unit.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}