| 12345678910111213141516171819202122232425262728293031 |
- {% extends "ui/panels/_base.html" %}
- {% load i18n %}
- {% block panel_content %}
- <table class="table table-hover attr-table">
- {% for group_name, fields in custom_fields.items %}
- {% if group_name %}
- <tr>
- <th scope="row" colspan="2" class="fw-bold">{{ group_name }}</th>
- </tr>
- {% endif %}
- {% for field, value in fields.items %}
- <tr>
- <th scope="row"{% if group_name %} class="ps-3"{% endif %}>{{ 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>
- <td>
- {% customfield_value field value %}
- </td>
- </tr>
- {% endfor %}
- {% endfor %}
- </table>
- {% endblock panel_content %}
|