{{ feedbacks|length }}
Total Submissions
{% if feedbacks %}
{{ "%.1f"|format(feedbacks|map(attribute='overall')|select('number')|list|sum / feedbacks|map(attribute='overall')|select('number')|list|length) }}
{% else %}—{% endif %}
Avg Overall Score
{% if feedbacks %}
{{ "%.1f"|format(feedbacks|map(attribute='nps')|select('number')|list|sum / feedbacks|map(attribute='nps')|select('number')|list|length) }}
{% else %}—{% endif %}
Avg NPS
| # | Date | Customer | Company | Country | Category | Overall | NPS | Order Again | Recommend |
|---|---|---|---|---|---|---|---|---|---|
| {{ f.id }} | {{ f.submission_time[:10] if f.submission_time else '—' }} | {{ f.customerName or '—' }} | {{ f.companyName or '—' }} | {{ f.country or '—' }} | {{ f.productCategory or '—' }} | {{ f.overall or '—' }}/5 | {{ f.nps if f.nps is not none else '—' }} | {{ f.orderAgain or '—' }} | {{ f.recommend or '—' }} |
No feedback submissions yet.