mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-25 22:57:45 -06:00
17 lines
453 B
HTML
17 lines
453 B
HTML
{% load i18n %}
|
|
|
|
{% if bookmarks %}
|
|
<div class="list-group list-group-flush">
|
|
{% for bookmark in bookmarks %}
|
|
<a href="{{ bookmark.object.get_absolute_url }}" class="list-group-item list-group-item-action">
|
|
{{ bookmark.object }}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<p class="text-center text-muted">
|
|
<i class="mdi mdi-information-outline"></i>
|
|
{% trans "No bookmarks have been added yet." %}
|
|
</p>
|
|
{% endif %}
|