diff --git a/netbox/templates/inc/panels/tags.html b/netbox/templates/inc/panels/tags.html index 0d669dd26..0e676eb09 100644 --- a/netbox/templates/inc/panels/tags.html +++ b/netbox/templates/inc/panels/tags.html @@ -4,11 +4,12 @@

{% trans "Tags" %}

- {% action_url object 'list' as url %} - {% for tag in object.tags.all %} - {% tag tag url %} - {% empty %} - {% trans "No tags assigned" %} - {% endfor %} + {% with url=object|validated_viewname:"list" %} + {% for tag in object.tags.all %} + {% tag tag url %} + {% empty %} + {% trans "No tags assigned" %} + {% endfor %} + {% endwith %}