apeters 36e606693b Users & Groups fixes/changes
Signed-off-by: apeters <apeters@korves.net>
2025-05-23 08:47:10 +00:00

36 lines
864 B
HTML

{% if not request.headers.get("Hx-Request") %}
{% extends "base.html" %}
{% endif %}
{% block breadcrumb %}
<nav aria-label="breadcrumb" id="nav-breadcrumb" hx-swap-oob="true">
<ul>
<li>System</li>
<li><a href="#" hx-target="#body-main" hx-get="{{ request.path }}">Users</a></li>
</ul>
</nav>
{% endblock breadcrumb %}
{% block body %}
<h4>Users</h4>
<details class="show-below-lg">
<summary role="button" class="button-slate-800">Pending logins and registrations</summary>
<article>
{% include "system/includes/users/pending_tokens.html" %}
</article>
</details>
<div class="grid split-grid">
<article class="hide-below-lg">
{% include "system/includes/users/pending_tokens.html" %}
</article>
<article id="system-users-full-table">
{% include "system/includes/users/table.html" %}
</article>
</div>
{% endblock body %}