adds tooltip on custom field #12131

This commit is contained in:
Abhimanyu Saharan 2023-05-05 21:55:02 +05:30
parent a29a07ed26
commit f3bef47887

View File

@ -12,11 +12,14 @@
<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>
<th scope="row">
<span title="{{ field.description|escape }}">{{ field }}</span>
</th>
<td> <td>
{% customfield_value field value %} {% customfield_value field value %}
<i
class="mdi mdi-information text-primary"
data-bs-toggle="tooltip"
data-bs-placement="right"
title="{{ field.description }}"
></i>
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}