mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-11-30 23:37:16 +01:00
12 lines
408 B
Handlebars
12 lines
408 B
Handlebars
<div class='note-attachts'>
|
|
{{#each attachments}}
|
|
<div class='note-attach-grid'>
|
|
<a target="_blank" href="{{redirect_url}}">
|
|
<div class="attach-preview note-attach" attach-file-id="{{file_id}}" data-background-image="{{preview_url}}"/>
|
|
</a>
|
|
{{#if ../can_delete}}
|
|
<div class="attach-remove icon-delete" title="{{t "quicknotes" "Delete attachment"}}"/>
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
</div> |