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

Changelog for #969

This commit is contained in:
Jeremy Stretch
2019-04-15 21:49:16 -04:00
parent 2b2de8f8a5
commit 48fe5470d2

View File

@ -51,6 +51,19 @@ To exclude _all_ objects, effectively disabling view permissions, set:
EXEMPT_VIEW_PERMISSIONS = ['*']
```
### Custom Links ([#969](https://github.com/digitalocean/netbox/issues/969))
Custom links are defined under the admin UI and will be displayed on each object of the selected type. Link text and
URLs can be formed from Jinja2 template code, with the viewed object passed as context data. For example, to link to an
external NMS from the device view, you might create a custom link with the following URL:
```
https://nms.local/nodes/?name={{ obj.name }}
```
Custom links appear as buttons at the top of the object view. Grouped links will render as a dropdown menu beneath a
single button.
## Changes
### New Dependency: Redis