{% extends "layout.html" %} {% from "_macros.html" import render_pagination %} {%- block title -%} {{ _('OAuth2 clients') }} {%- endblock -%} {% block content %}
{{ _('Create OAuth2 client') }}
{% for oauth2_client in oauth2_clients %} {% endfor %}
{{ _('Name') }}
{{ oauth2_client.client_name }} {{ _('Edit') }} {{ _('Delete') }}
{{ render_pagination(pagination) }}
{% endblock %}