updated code to match the panel

This commit is contained in:
Abhimanyu Saharan 2023-05-06 19:35:37 +05:30
parent 8ec467cd43
commit 6b3d15d505

View File

@ -132,9 +132,16 @@
</tr>
{% for field, value in fields.items %}
<tr>
<td>
<span title="{{ field.description|escape }}">{{ field }}</span>
</td>
<th scope="row">{{ field }}
{% if field.description %}
<i
class="mdi mdi-information text-primary"
data-bs-toggle="tooltip"
data-bs-placement="right"
title="{{ field.description }}"
></i>
{% endif %}
</th>
<td>
{% customfield_value field value %}
</td>