adds description field check

This commit is contained in:
Abhimanyu Saharan 2023-05-05 21:56:49 +05:30
parent f3bef47887
commit 36cc08c25e

View File

@ -14,12 +14,14 @@
<tr> <tr>
<td> <td>
{% customfield_value field value %} {% customfield_value field value %}
{% if field.description %}
<i <i
class="mdi mdi-information text-primary" class="mdi mdi-information text-primary"
data-bs-toggle="tooltip" data-bs-toggle="tooltip"
data-bs-placement="right" data-bs-placement="right"
title="{{ field.description }}" title="{{ field.description }}"
></i> ></i>
{% endif %}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}