{% extends "full_layout.html" %} {% import "macros/fields.html" as fields %} {% block title %}Update Application: {{ application.name }}{% endblock %} {% block subnav_header %} {% if current_user.is_admin %}{{ application.dna_account.email }} -> {% endif %}{{ application.name }} {% endblock %} {% block subnav_items %} {% endblock %} {% block content %}

Application details

{{ form.csrf_token }}
{{ fields.form_field(form.name) }} {{ fields.form_field(form.resource_group) }}
{{ fields.form_field(form.audience, tooltip="This feature concludes the value to assert the applications purpose on your back-end. If there's a product that is backed with several services behind it and you'd like to allow access to one of the services, use this function to do so.") }} {{ fields.form_readonly_field(application.token_audience, "Token audience", "token-audience", tooltip="The Token Audience value consists of product prefixes and suffixes from the editable Audience field.
For example, Product "test_product" and Audience "test_audience" would become "test_product|test_audience".") }}
{{ fields.form_field(form.ttl) }} {{ fields.form_field(form.scope) }}
{% if not application.is_deleted %} {% endif %}
Cancel
{{ form.csrf_token }}
{{ form.csrf_token }}
{% endblock %} {% include "components/confirmation-modal.html" %} {% include "applications/components/token_modal.html" %} {% block js %} {{ super() }} {% endblock %}