| 1234567891011121314151617181920212223242526272829 |
- <div class="content">
- <h2>Delete domain?</h2>
- <p>
- Are you sure do you want to delete the domain "<b>{{address}}</b>"?
- </p>
- <div class="buttons">
- <button type="button" hx-on:click="closeDialog()">Cancel</button>
- <button
- type="button"
- class="danger confirm"
- hx-delete="/api/domains/{id}"
- hx-ext="path-params"
- hx-vals='{"id":"{{id}}"}'
- hx-target="closest .content"
- hx-swap="none"
- hx-indicator="closest .content"
- hx-select-oob="#dialog-error"
- >
- <span>{{> icons/trash}}</span>
- Delete
- </button>
- {{> icons/spinner}}
- </div>
- <div id="dialog-error">
- {{#if error}}
- <p class="error">{{error}}</p>
- {{/if}}
- </div>
- </div>
|