mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-19 18:55:03 +00:00
15 lines
382 B
HTML
15 lines
382 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>
|
|
|
|
|
|
{% endblock %} |