14 lines
709 B
Twig
14 lines
709 B
Twig
{% extends 'collection/collection_entry_view.html.twig' %}
|
|
|
|
{% block collection_items %}
|
|
{% for key, attachment in attachments %}
|
|
<section class="frame-section frame-section-padding">
|
|
{% include '/cards/blocks/attachment.html.twig' with {'attachment': attachment, 'note': bare_notes[key], 'title': attachment.getBestTitle(bare_notes[key])} only %}
|
|
<a class="frame-section-button-like"
|
|
href="{{ attachment.getDownloadUrl(bare_notes[key]) }}">{% trans %}Download link{% endtrans %}</a>
|
|
</section>
|
|
{% else %}
|
|
<div id="empty-notes"><h1>{% trans %}No attachments here.{% endtrans %}</h1></div>
|
|
{% endfor %}
|
|
{% endblock collection_items %}
|