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

22 lines
621 B
HTML
Raw Normal View History

{% extends theme('base.html') %}
2021-12-05 17:52:34 +00:00
{% import 'fomanticui.html' as sui %}
2020-08-26 14:27:08 +00:00
{% block content %}
2021-12-20 22:57:27 +00:00
<div class="loginform">
<h3 class="ui top attached header">
{% trans %}View a token{% endtrans %}
</h3>
2020-10-31 17:22:24 +00:00
2021-12-20 22:57:27 +00:00
<div class="ui attached clearing segment">
<ul>
{% for attr in token.may %}
<li>{{ attr }}: {{ token[attr] }}</li>
{% endfor %}
{% for attr in token.must %}
<li>{{ attr }}: {{ token[attr] }}</li>
{% endfor %}
</ul>
</div>
2020-08-26 14:27:08 +00:00
</div>
{% endblock %}