mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 16:14:36 +00:00
26 lines
660 B
HTML
26 lines
660 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}
|
|
{{ _('Admin Units') }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
|
|
<h1>{{ _('Admin Units') }}</h1>
|
|
|
|
<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><a href="{{ url_for('admin_unit', admin_unit_id=admin_unit.id) }}">{{ admin_unit.name }}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{% endblock %} |