1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #6100: Fix VM interfaces table "add interfaces" link

This commit is contained in:
jeremystretch
2021-04-07 15:17:02 -04:00
parent f1e2b99456
commit b5ad29e3f2
3 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,14 @@
# NetBox v2.11
## v2.11-beta1 (2021-04-07)
## v2.11.0 (FUTURE)
### Bug Fixes (from Beta)
* [#6100](https://github.com/netbox-community/netbox/issues/6100) - Fix VM interfaces table "add interfaces" link
---
## v2.11-beta1 (2021-04-06)
**WARNING:** This is a beta release and is not suitable for production use. It is intended for development and evaluation purposes only. No upgrade path to the final v2.11 release will be provided from this beta, and users should assume that all data entered into the application will be lost.

View File

@ -16,7 +16,7 @@ from django.core.validators import URLValidator
# Environment setup
#
VERSION = '2.11-beta1'
VERSION = '2.11.0-dev'
# Hostname
HOSTNAME = platform.node()

View File

@ -35,7 +35,7 @@
{% endif %}
{% if perms.virtualization.add_vminterface %}
<div class="pull-right">
<a href="{% url 'virtualization:vminterface_add' %}?virtualmachine={{ object.pk }}&return_url={% url 'virtualization:virtualmachine_interfaces' pk=object.pk %}" class="btn btn-primary btn-xs">
<a href="{% url 'virtualization:vminterface_add' %}?virtual_machine={{ object.pk }}&return_url={% url 'virtualization:virtualmachine_interfaces' pk=object.pk %}" class="btn btn-primary btn-xs">
<span class="mdi mdi-plus-thick" aria-hidden="true"></span> Add interfaces
</a>
</div>