Fixes #5468: Fix unlocking secrets from device/VM view

This commit is contained in:
Jeremy Stretch 2020-12-16 13:48:44 -05:00
parent 52c9e3ecef
commit 3c887b0dd9
3 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -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 %}