{% extends 'base.html' %} {% load static %} {% block content %}

Player Information

Player image
Club: {{ player.present_club }}

Status: {{ player.status }}

{% comment %} {% endcomment %}
{% if player.status == "Rejected" %}
Player Registration Rejected

{{player.rejection_message}} {% comment %} This player's registration was rejected. Please review the details and make necessary corrections. {% endcomment %}

Edit Player Info
{% endif %}
Personal Information

Surname: {{ player.surname }}

Other Names: {{ player.other_names }}

Date of Birth: {{ player.date_of_birth }}

Place of Birth: {{ player.place_of_birth }}

Nationality: {{ player.nationality }}

State of Origin: {{ player.state_of_origin }}

Residential Address: {{ player.residential_address }}

Permanent Address: {{ player.permanent_address }}

Club Information

State FA: {{ player.state_fa }}

Present Club: {{ player.present_club }}

Club Division: {{ player.club_division }}

Jersey Number: {{ player.jersey_number }}

Position: {{ player.position }}

Career History & Contract

Employer: {{ player.employer }}

Last Club: {{ player.last_club }}

Date Left Last Club: {{ player.date_left_last_club }}

Reason for Leaving: {{ player.reason_for_leaving }}

Contract Period: {{ player.contract_period }}

Contract Expiry Date: {{ player.contract_expiry }}

Minor Status & Parental Consent

Is Minor: {% if player.is_minor %} Yes {% else %} No {% endif %}

{% if player.is_minor %}

Parental Consent:

{% if player.parental_consent %}
Consent Document Uploaded View Download
{% else %}
Parental consent document is missing. Please upload it to complete the registration.
{% endif %} {% endif %}
Uploaded Documents
    {% if player.passport_photo %}
  • Passport Photo View Download
  • {% endif %} {% if player.player_signature %}
  • Player Signature View Download
  • {% endif %} {% if player.club_stamp %}
  • Club Stamp View Download
  • {% endif %} {% if player.agent_signature %}
  • Agent Signature View Download
  • {% endif %}
Agent Information

Agent Name: {{ player.agent_name }}

{% endblock content %}