{% extends "minecraft_manager/dashboard.html" %} {% load csrf_html %} {% block title %}Player {{ player.username }}{% endblock %} {% block section %}

Player Info ({{ player.username }})

UUID: {{ player.uuid }}

Discord ID: {% if player.discord_id %}{{ player.discord_id }} {% else %}N/A{% endif %}

{% if player.auth_user %}

Connected User: {{ player.auth_user.username }}

{% endif %} {% if player.application %}

Application: {{ player.application.username }}

{% endif %}

Donor Status: {{ player.donor_status }}

First Seen: {{ player.first_seen }}

Last Seen: {{ player.last_seen }}

Banned: {% if player.is_banned %}Yes{% else %}No{% endif %}

Tickets

{% if form.tickets %} {% for ticket in form.tickets %} {% endfor %} {% else %} {% endif %}

Notes

{% if form.notes %} {% for note in form.notes %} {% endfor %} {% else %} {% endif %} Add Note

IPs

{% if form.ips %} {% for ip in form.ips %} {% if ip.associated %} {% else %} {% endif %} {% endfor %} {% else %} {% endif %}
{% endblock section %}