fixed field name

This commit is contained in:
Abhimanyu Saharan 2023-05-06 19:35:21 +05:30
parent 36cc08c25e
commit 8ec467cd43

View File

@ -12,8 +12,7 @@
<table class="table table-hover attr-table">
{% for field, value in fields.items %}
<tr>
<td>
{% customfield_value field value %}
<th scope="row">{{ field }}
{% if field.description %}
<i
class="mdi mdi-information text-primary"
@ -22,6 +21,9 @@
title="{{ field.description }}"
></i>
{% endif %}
</th>
<td>
{% customfield_value field value %}
</td>
</tr>
{% endfor %}