mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 17:38:37 -06:00
Fixes #3853: Fix device role link on config context view
This commit is contained in:
parent
15545b70d6
commit
e7ee4486a5
@ -8,6 +8,7 @@
|
|||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
|
||||||
* [#3589](https://github.com/netbox-community/netbox/issues/3589) - Fix validation on tagged VLANs of an interface
|
* [#3589](https://github.com/netbox-community/netbox/issues/3589) - Fix validation on tagged VLANs of an interface
|
||||||
|
* [#3853](https://github.com/netbox-community/netbox/issues/3853) - Fix device role link on config context view
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@
|
|||||||
{% if configcontext.roles.all %}
|
{% if configcontext.roles.all %}
|
||||||
<ul>
|
<ul>
|
||||||
{% for role in configcontext.roles.all %}
|
{% for role in configcontext.roles.all %}
|
||||||
<li><a href="{{ role.get_absolute_url }}">{{ role }}</a></li>
|
<li><a href="{% url 'dcim:device_list' %}?role={{ role.slug }}">{{ role }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
Loading…
Reference in New Issue
Block a user