forked from enviPath/enviPy
92 lines
2.2 KiB
HTML
92 lines
2.2 KiB
HTML
{% load static %}
|
|
|
|
<dialog
|
|
id="edit_scenario_modal"
|
|
class="modal"
|
|
x-data="modalForm()"
|
|
@close="reset()"
|
|
>
|
|
<div class="modal-box">
|
|
<!-- Header -->
|
|
<h3 class="font-bold text-lg">Edit Scenario</h3>
|
|
|
|
<!-- Close button (X) -->
|
|
<form method="dialog">
|
|
<button
|
|
class="btn btn-sm btn-circle btn-ghost absolute right-2 top-2"
|
|
:disabled="isSubmitting"
|
|
>
|
|
✕
|
|
</button>
|
|
</form>
|
|
|
|
<!-- Body -->
|
|
<div class="py-4">
|
|
<form
|
|
id="edit-scenario-modal-form"
|
|
accept-charset="UTF-8"
|
|
action=""
|
|
method="post"
|
|
>
|
|
{% csrf_token %}
|
|
|
|
<div class="form-control mb-3">
|
|
<label class="label" for="scenario-name">
|
|
<span class="label-text">Name</span>
|
|
</label>
|
|
<input
|
|
id="scenario-name"
|
|
class="input input-bordered w-full"
|
|
name="scenario-name"
|
|
value="{{ scenario.name|safe }}"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div class="form-control mb-3">
|
|
<label class="label" for="scenario-description">
|
|
<span class="label-text">Description</span>
|
|
</label>
|
|
<input
|
|
id="scenario-description"
|
|
type="text"
|
|
class="input input-bordered w-full"
|
|
value="{{ scenario.description|safe }}"
|
|
name="scenario-description"
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="modal-action">
|
|
<button
|
|
type="button"
|
|
class="btn"
|
|
onclick="this.closest('dialog').close()"
|
|
:disabled="isSubmitting"
|
|
>
|
|
Close
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="btn btn-primary"
|
|
@click="submit('edit-scenario-modal-form')"
|
|
:disabled="isSubmitting"
|
|
>
|
|
<span x-show="!isSubmitting">Update</span>
|
|
<span
|
|
x-show="isSubmitting"
|
|
class="loading loading-spinner loading-sm"
|
|
></span>
|
|
<span x-show="isSubmitting">Updating...</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Backdrop -->
|
|
<form method="dialog" class="modal-backdrop">
|
|
<button :disabled="isSubmitting">close</button>
|
|
</form>
|
|
</dialog>
|