mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
245b0bea12
Closes #4807
23 lines
849 B
Handlebars
23 lines
849 B
Handlebars
<button type="button" class="navigation-item-drag-handle icon-grab">
|
|
<span class="hidden">Reorder</span>
|
|
</button>
|
|
<div class="navigation-inputs">
|
|
<span class="navigation-item-label">
|
|
{{gh-trim-focus-input focus=navItem.last placeholder="Label" value=navItem.label}}
|
|
</span>
|
|
<span class="navigation-item-url">
|
|
{{gh-navitem-url-input baseUrl=baseUrl url=navItem.url change="updateUrl"}}
|
|
</span>
|
|
</div>
|
|
<span class="navigation-item-action">
|
|
{{#if navItem.last}}
|
|
<button type="button" class="add-navigation-link icon-add" {{action "addItem"}}>
|
|
<span class="hidden">Add</span>
|
|
</button>
|
|
{{else}}
|
|
<button type="button" class="navigation-delete icon-trash" {{action "deleteItem" navItem}}>
|
|
<span class="hidden">Delete</span>
|
|
</button>
|
|
{{/if}}
|
|
</span>
|