{% extends 'admin/base.html' %} {% load static %} {% block title %}Daftar Laporan - Admin Panel{% endblock %} {% block page_title %}Daftar Laporan Keuangan{% endblock %} {% block content %}

Daftar Laporan Keuangan (Read-Only)

Anda hanya dapat melihat data laporan. Untuk mengedit, gunakan modul keuangan bendahara.

{% if laporan %}
{% for l in laporan %} {% endfor %}
Judul Periode Tahun Bulan Dibuat Oleh Tanggal Aksi
{{ l.judul }}
{{ l.get_periode_display }} {{ l.tahun }} {% if l.bulan %} {% if l.bulan == 1 %}Januari {% elif l.bulan == 2 %}Februari {% elif l.bulan == 3 %}Maret {% elif l.bulan == 4 %}April {% elif l.bulan == 5 %}Mei {% elif l.bulan == 6 %}Juni {% elif l.bulan == 7 %}Juli {% elif l.bulan == 8 %}Agustus {% elif l.bulan == 9 %}September {% elif l.bulan == 10 %}Oktober {% elif l.bulan == 11 %}November {% elif l.bulan == 12 %}Desember {% endif %} {% else %} - {% endif %} {{ l.created_by.nama_lengkap }} {{ l.created_at|date:"d M Y" }} Lihat {% if l.file_laporan %} Download {% endif %}
{% 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 %}