Fixes #8456: Fix redundant display of VRF RD in prefix view

This commit is contained in:
jeremystretch
2022-01-28 13:19:23 -05:00
parent 00f2c652d1
commit e5ca008e90
2 changed files with 2 additions and 1 deletions

View File

@@ -18,7 +18,7 @@
<th scope="row">VRF</th>
<td>
{% if object.vrf %}
<a href="{% url 'ipam:vrf' pk=object.vrf.pk %}">{{ object.vrf }}</a> ({{ object.vrf.rd }})
<a href="{% url 'ipam:vrf' pk=object.vrf.pk %}">{{ object.vrf }}</a>
{% else %}
<span>Global</span>
{% endif %}