diff --git a/CHANGELOG.md b/CHANGELOG.md index f018cd403..d8eaf376b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ v2.5.8 (FUTURE) * [#2961](https://github.com/digitalocean/netbox/issues/2961) - Prevent exception when exporting inventory items belonging to unnamed devices * [#2962](https://github.com/digitalocean/netbox/issues/2962) - Increase ExportTemplate `mime_type` field length * [#2966](https://github.com/digitalocean/netbox/issues/2966) - Accept `null` cable length_unit via API +* [#2976](https://github.com/digitalocean/netbox/issues/2976) - Add delete button to tag view --- diff --git a/netbox/templates/extras/tag.html b/netbox/templates/extras/tag.html index 748cad0bf..5251b74de 100644 --- a/netbox/templates/extras/tag.html +++ b/netbox/templates/extras/tag.html @@ -29,6 +29,12 @@ Edit this tag {% endif %} + {% if perms.taggit.delete_tag %} + + + Delete this tag + + {% endif %}

{% block title %}Tag: {{ tag }}{% endblock %}

{% endblock %}