{% extends "admin_base.html" %} {% block title %}Registrations | Nexora Admin{% endblock %} {% block content %}
Player Data
Filter registrations, verify payments, and export Excel/PDF reports. Under Verification rows are highlighted in yellow.
Game Registrations
| Ticket & Player | Game | Team / Members | Payment | Check-In | Options |
|---|---|---|---|---|---|
| {{ row.full_name }}{{ row.ticket_serial }}{{ row.email }} · {{ row.phone }} | {{ row.game_title }}{{ row.platform }} | {{ row.team_name or 'Individual Entry' }}{% if row.team_id %}{{ row.team_id }} · {% endif %}{{ row.member_names|join(', ') }} | {% if can('confirm_payments') %}{% else %}{{ row.payment_status|replace('_', ' ')|title }}{% endif %}Total: {{ row.total_payable }} · Paid: {{ row.amount_paid }}Remaining: {{ row.remaining_amount }} | {{ 'Checked In' if row.entry_status == 'approved' else ('Rejected' if row.entry_status == 'rejected' else 'Not Arrived') }} | View{% if can('edit_registrations') %} Edit{% endif %}{% if can('download_pdf_tickets') %} PDF{% endif %}{% if can('confirm_payments') %}{% endif %} |
| No registrations yet. | |||||
Game Registrations
| Ticket & Player | Team / Members | Payment | Check-In | Options |
|---|---|---|---|---|
| {{ row.full_name }}{{ row.ticket_serial }}{{ row.email }} · {{ row.phone }} | {{ row.team_name or 'Individual Entry' }}{% if row.team_id %}{{ row.team_id }} · {% endif %}{{ row.member_names|join(', ') }} | {% if can('confirm_payments') %}{% else %}{{ row.payment_status|replace('_', ' ')|title }}{% endif %}Total: {{ row.total_payable }} · Paid: {{ row.amount_paid }}Remaining: {{ row.remaining_amount }} | {{ 'Checked In' if row.entry_status == 'approved' else ('Rejected' if row.entry_status == 'rejected' else 'Not Arrived') }} | View{% if can('edit_registrations') %} Edit{% endif %}{% if can('download_pdf_tickets') %} PDF{% endif %}{% if can('confirm_payments') %}{% endif %} |
| No registrations for this game yet. | ||||