37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% extends "workspaces/base.html" %}
|
|
|
|
{% from "components/text_input.html" import TextInput %}
|
|
|
|
{% block workspace_content %}
|
|
|
|
<form method="POST" action="{{ url_for('workspaces.edit_application', workspace_id=workspace.id, application_id=application.id) }}">
|
|
|
|
{% include "fragments/edit_application_form.html" %}
|
|
|
|
<div class="block-list application-list-item">
|
|
<header class="block-list__header block-list__header--grow">
|
|
<h2 class="block-list__title">Application Environments</h2>
|
|
<p>
|
|
Each environment created within an application is an enclave of cloud resources that is logically separated from each other for increased security.
|
|
</p>
|
|
</header>
|
|
|
|
<ul>
|
|
{% for environment in application.environments %}
|
|
<li class="block-list__item application-edit__env-list-item">
|
|
<div class="usa-input">
|
|
<label>Environment Name</label>
|
|
<input type="text" value="{{ environment.name }}" readonly />
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="action-group">
|
|
<button class="usa-button usa-button-primary" tabindex="0" type="submit">Update Application</button>
|
|
</div>
|
|
</form>
|
|
|
|
{% endblock %}
|