36 lines
877 B
HTML
36 lines
877 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><span>System</span></li>
|
|
<li><a href="#" hx-target="#body-main" hx-get="{{ request.path }}">Users</a></li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock breadcrumb %}
|
|
|
|
{% block body %}
|
|
|
|
<h5>Users</h5>
|
|
|
|
<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 %}
|