{% extends "base.html" %} {% load static i18n %} {% load thumbnail %} {% block title %}{% trans 'Messages' %}{% endblock %} {% block head %} {% endblock head %} {% block content %}
{% for user in users_list %} {% thumbnail user.picture "x30" as im %} {% trans 'Picture Profile' %} {% empty %} {% trans 'No Profile Picture' %} {% endthumbnail %} {{ user.get_profile_name|title }} {% endfor %}
{% if message_list %} {% for message in message_list %} {% include 'messager/single_message.html' with message=message %} {% endfor %} {% else %}

{% trans 'This is the begining of a great new conversation.' %}

{% trans "Let's get started now!" %}

{% endif %}
  • {% csrf_token %}
    {% endblock content %} {% block modal %} {% endblock modal %}