forked from Github-Mirrors/canaille
13 lines
359 B
HTML
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 %}
|