|
A new registration has arrived. Open the admin panel, review the payment proof, and mark the status as
Paid when approved. The player will receive an automatic confirmation email.
{% for label, value in [
('Full Name', details.name),
('Email', details.email),
('Phone', details.phone),
('CNIC', details.cnic),
('Institution Type', details.institution_type),
('Institution', details.university),
('Roll No.', details.roll_no),
('Game', details.game),
('Platform', details.platform),
('Entry Type', details.entry_type),
('Amount Remaining to Pay', details.remaining_amount),
('Team Name', details.team_name),
('Leader', details.leader_name),
('Member Count', details.member_count),
('Payment Status', details.payment_status),
('Submitted At', details.created_at)
] %}
| {{ label }} |
{{ value }} |
{% endfor %}
Team Members
{{ details.members }}
|