{% extends "base.html" %} {% block page_title %}Laporan {{ summary.quarter_name }} {{ summary.year }}{% endblock %} {% block content %}
{% if session.role == 'super_admin' %} Laporan realisasi triwulan semua bidang {% else %} Laporan realisasi triwulan bidang {{ session.bidang|title }} {% endif %}
Total Records
{{ summary.count }}
Total Pagu
Rp {{ "{:,.0f}".format(summary.total_pagu) }}
Total Realisasi
Rp {{ "{:,.0f}".format(summary.total_realisasi) }}
{{ "%.1f"|format(summary.percentage_keuangan) }}% dari pagu
Rata-rata Fisik
{{ "%.1f"|format(summary.avg_fisik) }}%
| No | Bulan | Program/Kegiatan | Lokasi | Pagu | Realisasi | Fisik | {% if session.role == 'super_admin' %}Bidang | {% endif %}
|---|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ ['', 'Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Agu', 'Sep', 'Okt', 'Nov', 'Des'][item.bulan] if item.bulan else '-' }} |
{{ item.program_name or 'Program tidak diketahui' }}
{{ item.kegiatan_name or 'Kegiatan tidak diketahui' }}
|
{{ item.kecamatan or '-' }}
{% if item.desa %}
{{ item.desa }}
{% endif %}
|
Rp {{ "{:,.0f}".format(item.pagu_anggaran or 0) }} |
Rp {{ "{:,.0f}".format(item.realisasi_keuangan or 0) }}
{% if item.pagu_anggaran and item.pagu_anggaran > 0 %}
{{ "%.1f"|format((item.realisasi_keuangan or 0) * 100 / item.pagu_anggaran) }}%
{% endif %}
|
{{ "%.1f"|format(item.realisasi_fisik or 0) }}%
|
{% if session.role == 'super_admin' %}
{{ item.bidang|title if item.bidang else '-' }} | {% endif %}
| TOTAL {{ summary.quarter_name.upper() }} | Rp {{ "{:,.0f}".format(summary.total_pagu) }} | Rp {{ "{:,.0f}".format(summary.total_realisasi) }} | {{ "%.1f"|format(summary.avg_fisik) }}% | {% if session.role == 'super_admin' %}{{ summary.count }} records | {% endif %}|||
Tidak ada data untuk {{ summary.quarter_name }} {{ summary.year }}
Silakan input data realisasi terlebih dahulu