{{ item.local_id }}
{{ kind_label(item.kind, project) }}
{{ item.title }}
{% if item.custom_fields %}
{% for field_key, field_cfg in project.custom_fields.items() %}
{% set field_value = item.custom_fields.get(field_key) %}
{% if field_value is sameas true %}
{{ field_cfg.label }}: {{ t("custom_fields.true") }}
{% elif field_value is not none and field_value != "" and field_value is not sameas false %}
{{ field_cfg.label }}: {{ field_value }}
{% endif %}
{% endfor %}
{% endif %}
{% for tag in item.tags %}
{{ tag }}
{% endfor %}
{% for branch in item.applies_to %}
{{ branch }}
{% endfor %}
{% endif %}
{{ t("common.updated") }}