{% if feedback_list %} {% for fb in feedback_list %}
{% if fb.rating == 'positive' %} 👍 {% elif fb.rating == 'negative' %} 👎 {% else %} 😐 {% endif %} {{ fb.incident_id }} {{ fb.category }}
{% if fb.comment %}
{{ fb.comment[:100] }}{% if fb.comment|length > 100 %}...{% endif %}
{% endif %} {% if fb.correct_root_cause %}
Correct RC: {{ fb.correct_root_cause[:50] }}{% if fb.correct_root_cause|length > 50 %}...{% endif %}
{% endif %}
{{ fb.submitted_at.strftime('%m/%d %H:%M') if fb.submitted_at else '—' }}
{% endfor %} {% else %}
💬

No feedback yet

Submit feedback to help improve the agent

{% endif %}