Fixes #8005: Fix contact email display

This commit is contained in:
jeremystretch 2021-12-08 11:04:03 -05:00
parent 988383648c
commit 4d896573b1
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
* [#7990](https://github.com/netbox-community/netbox/issues/7990) - Fix `title` display on contact detail view
* [#7996](https://github.com/netbox-community/netbox/issues/7996) - Show WWN field in interface creation form
* [#8001](https://github.com/netbox-community/netbox/issues/8001) - Correct verbose name for wireless LAN group model
* [#8005](https://github.com/netbox-community/netbox/issues/8005) - Fix contact email display
---

View File

@ -48,7 +48,7 @@
<tr>
<td>Email</td>
<td>
{% if object.phone %}
{% if object.email %}
<a href="mailto:{{ object.email }}">{{ object.email }}</a>
{% else %}
<span class="text-muted">None</span>