| 1 |
<div class="link-row" data-id="{{ id }}"> |
| 2 |
<div class="link-order-buttons"> |
| 3 |
<button type="button" class="order-btn" onclick="moveLink(this, -1)" title="Move up">▲</button> |
| 4 |
<button type="button" class="order-btn" onclick="moveLink(this, 1)" title="Move down">▼</button> |
| 5 |
</div> |
| 6 |
<input type="text" value="{{ title }}" placeholder="Title" name="title" disabled> |
| 7 |
<input type="url" value="{{ url }}" placeholder="https://..." name="url" disabled> |
| 8 |
<button class="btn-secondary link-edit-btn" onclick="editLink(this)">Edit</button> |
| 9 |
<button class="btn-primary link-save-btn hidden" onclick="saveLink(this)">Save</button> |
| 10 |
<button class="btn-secondary link-cancel-btn hidden" onclick="cancelLink(this)">Cancel</button> |
| 11 |
<button class="btn-danger link-remove-btn" |
| 12 |
hx-delete="/api/links/{{ id }}" |
| 13 |
hx-target="closest .link-row" |
| 14 |
hx-swap="outerHTML" |
| 15 |
hx-confirm="Remove this link?">Remove</button> |
| 16 |
</div> |
| 17 |
|