{% extends "layouts/base.html" %} {% block title %}Contracts - TryoutPro{% endblock %} {% block page_title %}Contracts{% endblock %} {% block breadcrumb %}Home / Profile / Contracts{% endblock %} {% block header_actions %} {% if current_user.role in ['admin', 'manager', 'coach'] %} Upload Contract {% endif %} {% endblock %} {% block content %}

Contract Dropbox

{% if contracts %}
{% for contract in contracts %} {% endfor %}
Player Team Contract Status Uploaded Actions
{{ contract.player.username }} {{ contract.team.name if contract.team else 'N/A' }} {{ contract.original_filename }} {% if contract.status == 'signed' %} Signed {% else %} Pending Signature {% endif %} {{ contract.uploaded_at.strftime('%Y-%m-%d %H:%M') }}
Download {% if contract.signed_file_path %} Signed {% endif %} {% if current_user.role == 'player' and contract.status == 'pending' %} {% endif %}
{% else %}

No contracts found

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

No contracts have been uploaded for you yet. Contact your coach or manager.

{% else %}

No contracts have been uploaded yet. Upload a contract using the button above.

{% endif %}
{% endif %}
{% if current_user.role == 'player' %} {% endif %} {% endblock %}