{% extends "admin/base.html" %} {% load static %} {% load currency_filters %} {% block title %}Event Registrations - {{ event.judul }}{% endblock %} {% block content %}

{{ event.judul }}

Kelola Pendaftar Event

{{ total_registrations }}
Total Pendaftar
{{ approved_count }}
Disetujui
{{ pending_count }}
Menunggu
{{ rejected_count }}
Ditolak
{{ paid_count }}
Sudah Bayar
{{ unpaid_count }}
Belum Bayar
{% for registration in registrations %} {% empty %} {% endfor %}
Pendaftar Kontak Instansi Status Pembayaran Tanggal Daftar Aksi
{{ registration.nama_lengkap|first|upper }}
{{ registration.nama_lengkap }}
{% if registration.peserta %}
Anggota
{% endif %}
{{ registration.email }}
{% if registration.no_telepon %}
{{ registration.no_telepon }}
{% endif %}
{{ registration.instansi|default:"-" }}
{% if registration.status == 'approved' %} Disetujui {% elif registration.status == 'rejected' %} Ditolak {% else %} Menunggu {% endif %} {% if event.biaya_pendaftaran > 0 %} {% if registration.bukti_pembayaran %} Sudah Bayar {% if registration.payment_status == 'verified' %}
Terverifikasi
{% endif %} {% else %} Belum Bayar {% endif %} {% else %} Gratis {% endif %}
{{ registration.created_at|date:"d M Y" }}
{{ registration.created_at|date:"H:i" }}
Detail {% if registration.status != 'approved' %} {% endif %} {% if registration.status != 'rejected' %} {% endif %} {% if registration.no_telepon %} {% if registration.status == 'approved' or registration.status == 'pending' %} {% endif %} {% if registration.status == 'rejected' or registration.status == 'pending' %} {% endif %} {% endif %}

Tidak ada pendaftar ditemukan

Coba ubah filter atau kata kunci pencarian

{% if registrations.has_other_pages %}
{% if registrations.has_previous %} Sebelumnya {% endif %} {% if registrations.has_next %} Selanjutnya {% endif %}
{% endif %}
{% endblock %}