{% extends 'chat/base.html' %} {% block title %}Admin Panel — DiscordClone{% endblock %} {% block body %}

Admin Panel

← Back
{% if messages %} {% for msg in messages %}
{{ msg }}
{% endfor %} {% endif %} {% for u in users %} {% empty %} {% endfor %}
User Email Role Actions
{% if u.profile.avatar %}{% endif %} {{ u.username }} {% if u.id in blocked_ids %}blocked{% endif %} {{ u.email }} {{ u.profile.role }}
{% csrf_token %} {% if u.id in blocked_ids %} {% else %} {% endif %}
No other users.
{% endblock %}