{% extends "layouts/base.html" %} {% block title %}{{ _('Contracts') }} - TryoutPro{% endblock %} {% block page_title %}{{ _('Contracts') }}{% endblock %} {% block breadcrumb %}{% endblock %} {% block header_actions %} {% if current_user.role in ['admin', 'manager', 'coach'] %} {{ _('Upload Contract') }} {% endif %} {% endblock %} {% block content %}
| {{ _('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 %}
|
{{ _('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 %}