{% extends "layouts/base.html" %} {% block title %}My Profile - TryoutPro{% endblock %} {% block page_title %}My Profile{% endblock %} {% block breadcrumb %}Home / Profile{% endblock %} {% block header_actions %}
Contracts Edit Profile
{% endblock %} {% block content %}

Account Information

{{ user.username[:2] | upper }}

{{ user.username }}

{{ user.full_name }} {{ user.role | capitalize }}

Member since {{ user.created_at.strftime('%B %Y') }}

Username {{ user.username }}
Email {{ user.email }}
Phone {{ user.phone or 'Not provided' }}
Account Status {% if user.is_active_account %} Active {% else %} Inactive {% endif %}

E-Sports Profile

Gamertags {% set games_list = user.get_games_list() %} {% if games_list %}
{% for game in games_list %} {% set gt = user.gamertags | selectattr('game', 'equalto', game) | first %}
{% if gt and gt.get_trn_url() %} {{ game }} {{ gt.gamertag }} {% if gt.platform %}({{ gt.platform }}){% endif %} {% else %} {{ game }} {% endif %}
{% endfor %}
{% else %} Not specified {% endif %}
Discord {% if user.discord_username %} {{ user.discord_username }} {% else %} Not connected {% endif %}
League OS {% if user.league_os_profile %} {{ user.league_os_profile }} {% else %} Not connected {% endif %}

My Statistics

{% if user.role == 'player' %}

{{ user.tryout_registrations.count() }}

Tryouts Registered

{{ user.team_assignments.count() }}

Team Assignments

{% elif user.can_evaluate() %}

{{ user.evaluations_given.count() }}

Evaluations Given

{% else %}

No statistics available for this role.

{% endif %}
{% if user.role == 'player' %}

My Contracts

{% if contracts %}
Contracts Pending {% set pending = contracts | selectattr('status', 'equalto', 'pending') | list %} {{ pending | length }}
Contracts Signed {% set signed = contracts | selectattr('status', 'equalto', 'signed') | list %} {{ signed | length }}
{% else %}

No contracts have been uploaded for you yet.

{% endif %}
{% endif %}
{% endblock %}