Files
linkding/bookmarks/templates/bundles/preview.html
2026-01-25 11:07:30 +01:00

11 lines
354 B
HTML

<turbo-frame id="preview">
{% if bookmark_list.is_empty %}
<div>No bookmarks match the current bundle.</div>
{% else %}
<div class="mb-4">Found {{ bookmark_list.bookmarks_total }} bookmarks matching this bundle.</div>
{% with pagination_frame="preview" %}
{% include 'bookmarks/bookmark_list.html' %}
{% endwith %}
{% endif %}
</turbo-frame>