{% extends "chatkit/base.html" %} {% load humanize %} {% block title %}ChatKit ยท Friends{% endblock %} {% block sidebar %}

Friends

Manage
{% if pending_requests %}

Requests ({{ pending_requests|length }})

{% for req in pending_requests|slice:":3" %}
{{ req.from_user.username }}
{% csrf_token %}
{% csrf_token %}
{% endfor %} {% if pending_requests|length > 3 %} View all ({{ pending_requests|length }}) {% endif %}
{% endif %}
{% endblock %} {% block content %}

Welcome to ChatKit

Connect with friends and start chatting

{% if friends_with_rooms %}

Select a friend from the sidebar to start chatting

{% else %}
Add Friends
Get Started

Send Friend Request

Find and connect with existing users

Create Invitation Link

Share a link to invite new friends

{% endif %}
{% endblock %}