Fixes #3853: Fix device role link on config context view

This commit is contained in:
Jeremy Stretch 2020-01-07 09:08:31 -05:00
parent 15545b70d6
commit e7ee4486a5
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@
## Bug Fixes
* [#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
---

View File

@ -112,7 +112,7 @@
{% if configcontext.roles.all %}
<ul>
{% 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 %}
</ul>
{% else %}