@@ -4,6 +4,7 @@
### Bug Fixes
+* [#5468](https://github.com/netbox-community/netbox/issues/5468) - Fix unlocking secrets from device/VM view
* [#5473](https://github.com/netbox-community/netbox/issues/5473) - Fix alignment of rack names in elevations list
* [#5478](https://github.com/netbox-community/netbox/issues/5478) - Fix display of route target description
@@ -1,4 +1,7 @@
{% if secrets %}
+ <form id="secret_form">
+ {% csrf_token %}
+ </form>
<table class="table table-hover panel-body">
{% for secret in secrets %}
<tr>
@@ -317,5 +317,6 @@
{% block javascript %}
<script src="{% static 'js/interface_filtering.js' %}?v{{ settings.VERSION }}"></script>
+ <script src="{% static 'js/secrets.js' %}?v{{ settings.VERSION }}"></script>
<script src="{% static 'js/tableconfig.js' %}?v{{ settings.VERSION }}"></script>
{% endblock %}