Adds a new button to the top right for deleting all documents in a directory.
12 lines
315 B
Handlebars
12 lines
315 B
Handlebars
<header>
|
|
{{breadcrumb-nav currentDirPath=currentDirPath}}
|
|
<nav class="actions">
|
|
{{#if currentListingContainsDocuments}}
|
|
<button class="delete-all" {{action "deleteDocuments"}}>delete all</button>
|
|
{{/if}}
|
|
</nav>
|
|
</header>
|
|
|
|
{{#if currentListing}}
|
|
{{directory-listing items=currentListing}}
|
|
{{/if}} |