{% extends 'agent/base_agent.html' %} {% block title %}Store Complaints | {{ company.name }} | ChatLab{% endblock %} {% block agent_complaints_active %}active{% endblock %} {% block header_center %} Store Complaints {% endblock %} {% block workspace %}

New Complaint

{% csrf_token %}
Back

Complaints

{% if complaints %}
{% for c in complaints %}
{{ c.title }} {% if c.customer_name %} by {{ c.customer_name }} {% endif %}
{{ c.description|linebreaksbr }}
Created {{ c.created_at|timesince }} ago
{% csrf_token %}
{% endfor %}
{% else %}
No complaints yet.
{% endif %}
{% endblock %}