{# .. screenshot:: |canaille|/admin/client/edit/client :context: admin :align: right :width: 275px The client addition page. The client edition template. Displays a form to edit a :class:`~canaille.oidc.basemodels.Client`. :param form: The client creation form. :type form: :class:`~canaille.oidc.endpoints.forms.ClientAddForm`. :param client: The edited client. :type client: :class:`~canaille.oidc.basemodels.Client` #} {% extends theme('base.html') %} {% import 'macro/form.html' as fui %} {%- block title -%} {%- trans %}Edit an application{% endtrans -%} {%- endblock -%} {% block script %} {% endblock %} {% block submenu %} {% trans %}Applications{% endtrans %} {% trans %}Tokens{% endtrans %} {% endblock %} {% block content %}

{% trans %}Management token{% endtrans %}

{% trans %}This token can be used to edit the application details through the OAuth 2.0 Dynamic Client Registration Management Protocol.{% endtrans %} {% trans %}Read more…{% endtrans %}

{% call fui.render_form(form) %}
{% endcall %}

{% trans %}Edit an application{% endtrans %} {% if client.trusted %} {% trans %}Trusted{% endtrans %} {% endif %}

{% call fui.render_form(form, csrf=false) %} {{ fui.render_fields(form) }}
{% endcall %}
{% endblock %}