Changelog for #969

This commit is contained in:
Jeremy Stretch 2019-04-15 21:49:16 -04:00
parent 489d0f809c
commit f1b04c1fad

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