{% extends "layouts/base.html" %} {% block title %}{{ profile_user.username }} - TryoutPro{% endblock %} {% block page_title %}{{ profile_user.username }}{% endblock %} {% block breadcrumb %}Home / Back / {{ profile_user.username }}{% endblock %} {% block content %}
{{ profile_user.username[:2] | upper }}

{{ profile_user.username }}

{{ profile_user.role | capitalize }}
Username {{ profile_user.username }}
Role {{ profile_user.role | capitalize }}
{% if profile_user.discord_username %}
Discord {{ profile_user.discord_username }}
{% endif %}
{% set gamertags = profile_user.gamertags %} {% if gamertags %}

Gamertags

{% for gt in gamertags %} {% endfor %}
Game Gamertag Platform Profile
{{ gt.game }} {{ gt.gamertag }} {{ gt.platform or '-' }} {% if gt.get_trn_url() %} View Profile {% else %} {% endif %}
{% endif %}
{% endblock %}