{% extends 'admin_panel/base.html' %} {% load static %} {% block page_title %}Daftar Dokumen Transparansi{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Daftar Dokumen Transparansi

Kelola semua dokumen transparansi desa

Reset
{% if documents %}
{% for document in documents %} {% endfor %}
ID Judul Nomor Kategori Tahun Status Public Download Aksi
{{ document.id }} {{ document.title|truncatechars:50 }} {% if document.is_featured %} {% endif %} {{ document.document_number|default:"-" }} {{ document.category.name }} {{ document.document_year }} {% if document.status == 'published' %} Published {% elif document.status == 'review' %} Review {% elif document.status == 'archived' %} Archived {% else %} Draft {% endif %} {% if document.is_public %} {% else %} {% endif %} {{ document.download_count }}
{{ document.view_count }}
{% if documents.has_other_pages %} {% endif %}
Menampilkan {{ documents.start_index }} - {{ documents.end_index }} dari {{ documents.paginator.count }} dokumen
{% else %}

{% if search or selected_category or selected_status or selected_year %} Tidak ada dokumen yang sesuai dengan filter {% else %} Belum ada dokumen. Tambahkan dokumen pertama Anda! {% endif %}

Tambah Dokumen
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}