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

Daftar Iuran

Riwayat pembayaran iuran Anda

Bayar Iuran
{% if iuran_list %}
{% for iuran in iuran_list %}

{{ iuran.get_tipe_display }}

{% if iuran.status == 'confirmed' %} Terkonfirmasi {% elif iuran.status == 'pending' %} Pending {% else %} Dibatalkan {% endif %}

Periode: {{ iuran.periode }}

{{ iuran.jumlah|currency }}

{{ iuran.created_at|date:"d F Y, H:i" }}

{% endfor %}
{% if iuran_list.has_other_pages %}
Menampilkan {{ iuran_list.start_index }} - {{ iuran_list.end_index }} dari {{ iuran_list.paginator.count }} iuran
{% if iuran_list.has_previous %} {% endif %} {% if iuran_list.has_next %} {% endif %}
{% endif %} {% else %}

Belum ada iuran

Mulai bayar iuran Anda sekarang

Bayar Iuran
{% endif %}
{% endblock %}