{% extends 'admin_panel/base.html' %} {% load static %} {% block page_title %}Laporan Wisata{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Kembali ke Dashboard

Laporan Wisata

Statistik dan analisis data wisata desa

Total Lokasi

{{ total_locations }}

Lokasi Aktif

{{ active_locations }}

Total Review

{{ total_reviews }}

Rating Rata-rata

{{ average_rating|floatformat:1 }}

Lokasi Terpopuler

{% for location in top_locations %} {% endfor %}
Rank Nama Lokasi Kategori Rating Review Status
#{{ forloop.counter }} {{ location.title }} {% if location.category %} {{ location.category.name }} {% else %} Tanpa Kategori {% endif %}
{{ location.avg_rating|floatformat:1 }}
{% for i in "12345" %} {% if forloop.counter <= location.avg_rating %} {% else %} {% endif %} {% endfor %}
{{ location.review_count }} {% if location.is_active %} Aktif {% else %} Tidak Aktif {% endif %}

Review Terbaru

{% for review in recent_reviews %}
{% if review.user %} {{ review.user.get_full_name|default:review.user.username }} {% else %} Anonim {% endif %}

{{ review.comment|truncatechars:50 }}

{% for i in "12345" %} {% if forloop.counter <= review.rating %} {% else %} {% endif %} {% endfor %}
{{ review.created_at|date:"d M Y" }}
{% empty %}
Belum ada review
{% endfor %}

Export Laporan

Excel

Export data wisata ke format Excel untuk analisis lebih lanjut

Download Excel

PDF

Export laporan lengkap ke format PDF untuk dokumentasi

Download PDF

CSV

Export data mentah ke format CSV untuk import ke sistem lain

Download CSV
{% endblock %} {% block extra_js %} {% endblock %}