{% extends 'base.html' %} {% load dashboard_extras %} {% block title %}Data View | Chat Analytics{% endblock %} {% block content %}

Data View

Back to Dashboard {% if selected_data_source %} View Source {% endif %}
Data Source Selection
Export Data
Chat Sessions {% if selected_data_source %} for {{ selected_data_source.name }} {% endif %} {% if view != 'all' %} ({{ view|title }}) {% endif %}
{{ page_obj.paginator.count }} sessions
Loading...

Loading data...

{% include "dashboard/partials/data_table.html" %}
{% if page_obj %}
Summary
Total Sessions

{{ page_obj.paginator.count }}

Chat conversations

Avg Response Time

{{ avg_response_time|floatformat:2 }}s

Average response

Avg Messages

{{ avg_messages|floatformat:1 }}

Per conversation

Escalation Rate

{{ escalation_rate|floatformat:1 }}%

Escalated sessions

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}