canaille-globuzma/canaille/templates/oidc/admin/authorization_list.html
Éloi Rivard cf9b5c11a3 Dynamic tables with htmx
- Search is triggered with user inputs
- Page changes are triggered with clicks
2023-03-09 19:31:59 +01:00

13 lines
359 B
HTML

{% extends theme('base.html') %}
{% import "macro/table.html" as table %}
{% block script %}
<script src="/static/js/users.js"></script>
{% endblock %}
{% block content %}
<div class="ui attached segment">
{{ table.search(table_form, "table.codes") }}
</div>
{% include "partial/oidc/admin/authorization_list.html" %}
{% endblock %}