mirror of
https://github.com/sissbruecker/linkding.git
synced 2026-02-28 06:53:12 +08:00
11 lines
354 B
HTML
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>
|