Files
netbox/netbox/templates/inc/panels/related_objects.html
2024-08-27 09:35:21 -04:00

25 lines
899 B
HTML

{% load helpers %}
{% load i18n %}
<div class="card">
<h5 class="card-header">{% trans "Related Objects" %}</h5>
<ul class="list-group list-group-flush">
{% for qs, filter_param in related_models %}
{% with viewname=qs.model|validated_viewname:"list" %}
{% if viewname is not None %}
<a href="{% url viewname %}?{{ filter_param }}={{ object.pk }}" class="list-group-item list-group-item-action d-flex justify-content-between">
{{ qs.model|meta:"verbose_name_plural"|bettertitle }}
{% with count=qs.count %}
{% if count %}
<span class="badge text-bg-primary rounded-pill">{{ count }}</span>
{% else %}
<span class="badge text-bg-light rounded-pill">&mdash;</span>
{% endif %}
{% endwith %}
</a>
{% endif %}
{% endwith %}
{% endfor %}
</ul>
</div>