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

Closes #3430: Linkify platform field on device view

This commit is contained in:
Jeremy Stretch
2019-08-19 09:50:41 -04:00
parent 9c41984f6d
commit f56a0aebdb
2 changed files with 2 additions and 1 deletions

View File

@ -239,7 +239,7 @@
<td>Platform</td>
<td>
{% if device.platform %}
<span>{{ device.platform }}</span>
<a href="{{ device.platform.get_absolute_url }}">{{ device.platform }}</a>
{% else %}
<span class="text-muted">None</span>
{% endif %}