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