fixed field name

This commit is contained in:
Abhimanyu Saharan 2023-05-06 19:35:21 +05:30
parent 36cc08c25e
commit 8ec467cd43

View File

@ -12,16 +12,18 @@
<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>
<td> <th scope="row">{{ field }}
{% customfield_value field value %} {% if field.description %}
{% 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 %} {% endif %}
</th>
<td>
{% customfield_value field value %}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}