| 1 |
<div class="link-row" data-row data-id="{{ id }}"> |
| 2 |
<div class="link-order-buttons"> |
| 3 |
<button type="button" class="order-btn" data-action="onMoveLink" data-arg="-1" title="Move up">▲</button> |
| 4 |
<button type="button" class="order-btn" data-action="onMoveLink" data-arg="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" data-action="onEditLink">Edit</button> |
| 9 |
<button class="btn-primary link-save-btn hidden" data-action="onSaveLink">Save</button> |
| 10 |
<button class="btn-secondary link-cancel-btn hidden" data-action="onCancelLink">Cancel</button> |
| 11 |
<span class="link-remove-btn">{{ crate::quasi::link_remove_act::html(id)|safe }}</span> |
| 12 |
</div> |
| 13 |
|