{% extends 'base.html' %} {% block title %} Daftar Chat {% endblock %} {% block data-page %} style {% endblock %} {% block content %}
{% include "header.html" %}
{% if messages %}
{% for x in messages %}


{{ x }}

{% endfor %}
{% endif %}
{% for x in page_obj %} {% for o in x.parapengguna.all %} {% if o.id == request.user.id %} {% else %} {% endif %} {% endfor %} {% endfor %}
{% include 'pagination.html' with page='page' %}
{% include "footer.html" %} {% endblock %}