{% extends 'anggota/base.html' %} {% load static %} {% load currency_filters %} {% block title %}Pendaftaran Saya - {{ block.super }}{% endblock %} {% block content %}

Pendaftaran Saya

Daftar semua event yang telah Anda daftar

{% if registrations %}
{% for registration in registrations %}
{% if registration.event.gambar_utama %} {{ registration.event.judul }} {% else %}
{% endif %}
{% if registration.status == 'approved' %} Disetujui {% elif registration.status == 'pending' %} Menunggu {% elif registration.status == 'rejected' %} Ditolak {% endif %}

{{ registration.event.judul }}

{{ registration.event.tanggal_mulai|date:"d M Y" }}
{{ registration.event.lokasi }}
{% if registration.event.harga > 0 %} {{ registration.event.harga|currency }} {% else %} Gratis {% endif %}

Tanggal Daftar: {{ registration.created_at|date:"d F Y, H:i" }}

{% if registration.biaya_pendaftaran > 0 %}

Biaya: {{ registration.biaya_pendaftaran|currency }}

{% endif %} {% if registration.bukti_pembayaran %}

Bukti pembayaran sudah diupload

{% endif %}
Lihat Detail
{% endfor %}
{% if registrations.has_other_pages %}
{% endif %} {% else %}

Belum ada pendaftaran

Anda belum mendaftar untuk event apapun.

Lihat Daftar Event
{% endif %}
{% endblock %}