inspektor/app/templates/index.hbs
Sebastian Kippe 9f5d8bfb93 Delete all documents in current directory
Adds a new button to the top right for deleting all documents in a
directory.
2018-01-03 13:34:04 +00:00

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}}