{% extends "base.html" %} {% load humanize %} {% block title %}Messaging{% endblock %} {% block description %}Real-time private messaging system{% endblock %} {% block keywords %}messaging, chat, direct messages{% endblock %} {% block og_title %}Messaging - BLT{% endblock %} {% block og_description %}Real-time private messaging system{% endblock %} {% block content %} {% include "includes/sidenav.html" %}

Your messaging is locked. Please unlock to continue.

Conversations

{% for thread in threads %}
{% for participant in thread.participants.all %} {% if participant != request.user %}{{ participant.username }}{% endif %} {% endfor %}
{% endfor %}

Welcome to BLT DMs, search a user to start chatting.

{% endblock %}