{% extends 'root/base.html' %} {% load static %} {% block title %} chat {% endblock %} {% block maincontent %}
My messages
search
{% for chats in user_chats_list %}
groups
{% if chats.chat_type == 'INQUIRED' %}
Shopping Cart {{chats.room_no}} - Inquiry
{% endif %}
{{chats.chat_timestamp}}
{{chats.chat_content}}
1
{% endfor %}
groups
Shopping Cart {{chat_room_data.room_no}} - Inquiry
{% for participant_names in participants_name %} {{participant_names.first_name}}, {% endfor %}
{% endblock %}