mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 08:09:37 +00:00
31 lines
818 B
HTML
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 %} |