{% extends 'keuangan/base.html' %} {% load static %} {% load currency_filters %} {% block title %}Laporan Keuangan - HMI Website{% endblock %} {% block page_title %}Laporan Keuangan{% endblock %} {% block content %}
Reset

Daftar Laporan

{% if laporan %}
{% for l in laporan %} {% endfor %}
Periode Tipe Pemasukan Pengeluaran Saldo Status Aksi
{% if l.tipe == 'bulanan' %} {{ l.get_bulan_display }} {{ l.tahun }} {% else %} {{ l.tahun }} {% endif %}
{{ l.get_tipe_display }} Rp {{ l.total_pemasukan|number_idr }} Rp {{ l.total_pengeluaran|number_idr }} Rp {{ l.saldo|number_idr }} {{ l.get_status_display }}
{% if laporan.has_other_pages %}
Menampilkan {{ laporan.start_index }} sampai {{ laporan.end_index }} dari {{ laporan.paginator.count }} laporan
{% if laporan.has_previous %} Previous {% endif %} {% for num in laporan.paginator.page_range %} {% if laporan.number == num %} {{ num }} {% elif num > laporan.number|add:'-3' and num < laporan.number|add:'3' %} {{ num }} {% endif %} {% endfor %} {% if laporan.has_next %} Next {% endif %}
{% endif %} {% else %}

Tidak ada laporan ditemukan

{% endif %}
{% endblock %}