From f56a0aebdba30d33731fd64b8522ae176672892f Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 19 Aug 2019 09:50:41 -0400 Subject: [PATCH] Closes #3430: Linkify platform field on device view --- CHANGELOG.md | 1 + netbox/templates/dcim/device.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb2de0a25..f90cf47bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ v2.6.3 (FUTURE) * [#3391](https://github.com/netbox-community/netbox/issues/3391) - Update Bootstrap CSS to v3.4.1 * [#3405](https://github.com/netbox-community/netbox/issues/3405) - Fix population of power port/outlet details on device creation * [#3422](https://github.com/netbox-community/netbox/issues/3422) - Prevent navigation menu from overlapping page content +* [#3430](https://github.com/netbox-community/netbox/issues/3430) - Linkify platform field on device view --- diff --git a/netbox/templates/dcim/device.html b/netbox/templates/dcim/device.html index 414b61bb6..dca3e60a6 100644 --- a/netbox/templates/dcim/device.html +++ b/netbox/templates/dcim/device.html @@ -239,7 +239,7 @@ Platform {% if device.platform %} - {{ device.platform }} + {{ device.platform }} {% else %} None {% endif %}