mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-26 11:21:47 +01:00
This continues the migration of object views in the user app to NetBox v4.5’s declarative layouts. Replace legacy object view templates with declarative layouts for: - Users - Groups - API Tokens - Permissions - Owner Groups - Owners
14 lines
328 B
HTML
14 lines
328 B
HTML
{% extends 'generic/object.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ block.super }}
|
|
{% if object.group %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'users:owner_list' %}?group_id={{ object.group_id }}">{{ object.group }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block subtitle %}{% endblock %}
|