{% extends 'admin/base_admin.html' %} {% block title %}Escalations | {{ request.user.company.name }} | ChatLab{% endblock %} {% block admin_dash_active %}active{% endblock %} {% block workspace %} {% if escalations %}
{% for e in escalations %}
Visitor: {{ e.visitor_id|default:"—" }} · {{ e.created_at|date:"M j, H:i" }}
{{ e.message }}
{% csrf_token %}
{% endfor %}
{% else %}
No pending escalations.
{% endif %} {% endblock %}