2021-10-28 13:24:34 +00:00
|
|
|
{% extends theme('base.html') %}
|
2023-03-07 17:29:18 +00:00
|
|
|
{% import "macro/table.html" as table %}
|
2020-08-17 13:49:48 +00:00
|
|
|
|
|
|
|
{% block script %}
|
|
|
|
<script src="/static/js/users.js"></script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2021-12-20 22:57:27 +00:00
|
|
|
<div class="ui segment">
|
2022-01-11 18:49:06 +00:00
|
|
|
<a class="ui primary button" href="{{ url_for('oidc.clients.add') }}">{% trans %}Add client{% endtrans %}</a>
|
2021-12-20 22:57:27 +00:00
|
|
|
</div>
|
2020-08-17 13:49:48 +00:00
|
|
|
|
2023-03-07 17:29:18 +00:00
|
|
|
<div class="ui attached segment">
|
|
|
|
{{ table.search(table_form) }}
|
|
|
|
</div>
|
2023-02-25 17:11:19 +00:00
|
|
|
{% include "partial/oidc/admin/client_list.html" %}
|
2020-08-17 13:49:48 +00:00
|
|
|
{% endblock %}
|