{% load helpers %} {% load i18n %} {% with custom_fields=object.get_custom_fields_by_group %} {% if custom_fields %}
{% trans "Custom Fields" %}
{% for group_name, fields in custom_fields.items %} {% if group_name %}
{{ group_name }}
{% endif %} {% for field, value in fields.items %} {% endfor %}
{{ field }} {% if field.description %} {% endif %} {% customfield_value field value %}
{% endfor %}
{% endif %} {% endwith %}