Skip to content

Commit

Permalink
Fixes #6100: Fix VM interfaces table "add interfaces" link
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Apr 7, 2021
1 parent f1e2b99 commit b5ad29e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion docs/release-notes/version-2.11.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion netbox/netbox/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Environment setup
#

VERSION = '2.11-beta1'
VERSION = '2.11.0-dev'

# Hostname
HOSTNAME = platform.node()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit b5ad29e

Please sign in to comment.