{% extends 'base.html' %} {% load static %} {% block title %}- General Chat History{% endblock title %} {% block content %}

{{ user.username|capfirst }}: Chat History ({{ conversations.count }})

{% for conversation in conversations %}
{{ conversation.title }}
{% empty %} No Conversation Found. {% endfor %}
{% endblock content %}