canaille-globuzma/canaille/templates/oidc/admin/token_list.html

24 lines
584 B
HTML
Raw Normal View History

{% extends theme('base.html') %}
2023-03-07 17:29:18 +00:00
{% import "macro/table.html" as table %}
2020-08-26 14:27:08 +00:00
2023-03-10 00:02:36 +00:00
{% block title %}
{% trans %}Tokens{% endtrans %}
{% endblock %}
2020-08-26 14:27:08 +00:00
{% block script %}
<script src="/static/js/users.js"></script>
{% endblock %}
{% block content %}
2023-03-07 17:29:18 +00:00
<div class="ui attached segment">
2023-03-09 19:34:57 +00:00
<h2 class="ui center aligned header">
<div class="content">
{% trans %}Tokens{% endtrans %}
</div>
</h2>
{{ table.search(table_form, "table.tokens") }}
2023-03-07 17:29:18 +00:00
</div>
{% include "partial/oidc/admin/token_list.html" %}
2020-08-26 14:27:08 +00:00
{% endblock %}