Files
netbox/netbox/templates/extras/dashboard/widgets/bookmarks.html
2023-09-11 16:17:02 -04:00

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 %}