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