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

{{ data_source.name }}

Back to Data Sources Delete
Data Source Details

Name: {{ data_source.name }}

Uploaded At: {{ data_source.uploaded_at|date:"F d, Y H:i" }}

File: {{ data_source.file.name|split:"/"|last }}

Company: {{ data_source.company.name }}

Total Sessions: {{ page_obj.paginator.count }}

Description: {{ data_source.description }}

Filter Sessions
Chat Sessions ({{ page_obj.paginator.count }})
{% for session in page_obj %} {% empty %} {% endfor %}
Session ID Start Time Country Language Sentiment Messages Tokens Category Actions
{{ session.session_id|truncatechars:10 }} {{ session.start_time|date:"M d, Y H:i" }} {{ session.country }} {{ session.language }} {% if session.sentiment %} {% if 'positive' in session.sentiment|lower %} {{ session.sentiment }} {% elif 'negative' in session.sentiment|lower %} {{ session.sentiment }} {% elif 'neutral' in session.sentiment|lower %} {{ session.sentiment }} {% else %} {{ session.sentiment }} {% endif %} {% else %} N/A {% endif %} {{ session.messages_sent }} {{ session.tokens }} {{ session.category|default:"N/A" }}
No chat sessions found.
{% if page_obj.paginator.num_pages > 1 %} {% endif %}
{% endblock %}