{% 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.full_name[:2] | upper }}

{{ 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

Games {% set games_list = user.get_games_list() %} {% if games_list %} {% for game in games_list %} {{ game }} {% endfor %} {% else %} Not specified {% endif %}
TRN (Tracker Network) {% if user.gamertags %}
{% for gamertag in user.gamertags %} {% endfor %}
{% else %} Not connected {% 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.evaluations_received.count() }}

Evaluations Received

{{ 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 %}