{% extends 'base.html' %} {% block title %}{% if other_user %}{{ other_user.get_full_name }}{% else %}Conversation{% endif %} — CampusTalent{% endblock %} {% block footer %}{% endblock %} {% block content %}
Messages New
{% for item in conv_list %}
{% if item.other %} {% if item.other.profile.photo %} {% else %}
{{ item.other.first_name|first|upper }}{{ item.other.last_name|first|upper }}
{% endif %} {% else %}
G
{% endif %}
{% if item.other %}{{ item.other.get_full_name }}{% else %}{{ item.conv.name|default:"Group" }}{% endif %}
{% if item.last_msg %}
{{ item.last_msg.content|truncatechars:30 }}
{% endif %}
{% endfor %}
{% if other_user %} {% if other_user.profile.photo %} {% else %}
{{ other_user.first_name|first|upper }}{{ other_user.last_name|first|upper }}
{% endif %}
{{ other_user.get_full_name }}
{{ other_user.university|default:"Student" }}
View Profile {% else %}
{{ conversation.name|default:"Group Conversation" }}
{% endif %}
{% for message in messages %}
{% if message.sender != user %}
{{ message.sender.first_name }}
{% endif %}
{{ message.content }}
{{ message.created_at|date:"H:i" }}
{% empty %}
👋
Start the conversation!
{% endfor %}
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}