mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-26 09:16:10 -06:00
fixed field name
This commit is contained in:
parent
36cc08c25e
commit
8ec467cd43
@ -12,8 +12,7 @@
|
|||||||
<table class="table table-hover attr-table">
|
<table class="table table-hover attr-table">
|
||||||
{% for field, value in fields.items %}
|
{% for field, value in fields.items %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<th scope="row">{{ field }}
|
||||||
{% customfield_value field value %}
|
|
||||||
{% if field.description %}
|
{% if field.description %}
|
||||||
<i
|
<i
|
||||||
class="mdi mdi-information text-primary"
|
class="mdi mdi-information text-primary"
|
||||||
@ -22,6 +21,9 @@
|
|||||||
title="{{ field.description }}"
|
title="{{ field.description }}"
|
||||||
></i>
|
></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
{% customfield_value field value %}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user