ChatX
{% if user.is_authenticated %}
Chat
Logout
{% else %}
Sign Up
Login
{% endif %}
Chat Here
Hi {{ user.username }}!
Start New
Your conversations
{% for chat in chat_rooms_sender %}
You and {{ chat.receiver }}
{% endfor %} {% for chat in chat_rooms_receiver %}
You and {{ chat.sender }}
{% endfor %}