{% extends 'base.html' %} {% block title %}Messages — CampusTalent{% endblock %} {% block footer %}{% endblock %} {% block content %}
Messages New
{% if conv_list %} {% 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:38 }}
{% endif %}
{{ item.conv.updated_at|timesince|slice:":8" }}
{% endfor %} {% else %}
💬

No conversations yet.

Find People
{% endif %}
✉️

Your Messages

Select a conversation or find new people to connect with.

Find People to Message
{% endblock %}