{{ 'Report'|trans }}
{{ '%user% has filled a %report_label% report on %date%'|trans(
{
'%user%' : user,
'%report_label%': report.CFGroup.name|localize_translatable_string,
'%date%' : report.date|localizeddate('long', 'none') }
) }} {{ 'View the report'|trans }}
{% if custom_fields_in_summary|length > 0 %}
{% for field in custom_fields_in_summary %}
{% if field.type == 'title' %}
{{ chill_custom_field_widget(report.cFData, field) }}
{% else %}
- {{ chill_custom_field_label(field) }}
- {{ chill_custom_field_widget(report.cFData, field) }}
{% endif %}
{% endfor %}
{% endif %}