{% import "macros/buttons.html" as buttons %} {% import "macros/forms.html" as forms %} {% import "macros/modal.html" as modal %} {% import "macros/icons.html" as icons %} {% extends "admin/clients/list.html" %} {% block head_title_content %}{{ client.name }} ยท {{ super() }}{% endblock %} {% set open_modal = true %} {% block modal %}
{% call modal.header() %} {% call modal.title() %}Edit Client {{ client.name }}{% endcall %} {% endcall %} {% call modal.body() %}
{{ forms.form_field(form.name) }} {{ forms.form_field(form.first_party) }} {{ forms.form_field(form.client_type) }} {{ forms.form_field(form.redirect_uris) }} {{ forms.form_csrf_token(form) }}
{% endcall %} {% call modal.footer() %} {% call buttons.submit('btn-sm') %} Update {% endcall %} {% endcall %}
{% endblock %}