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

Daftar Lokasi Wisata

Kelola semua lokasi wisata Desa Pulosarok

Filter & Pencarian
Reset
{% for location in page_obj.object_list %}
{% if location.main_image %} {{ location.title }} {% else %}
{% endif %}
{% if location.featured %} {% endif %} {% if not location.is_active %} {% endif %}
{{ location.title|truncatechars:25 }}

{{ location.short_description|truncatechars:80|default:location.full_description|truncatechars:80 }}

{% if location.ratings.count > 0 %} {{ location.average_rating|floatformat:1 }} {% else %} - {% endif %} Rating
{{ location.reviews.count|default:0 }} Review
{% if location.is_active %} {% else %} {% endif %} Status
{{ location.category.name }} {% if location.featured %} Unggulan {% endif %}
{% if location.entry_fee %}
{{ location.entry_fee|currency_idr }} {{ location.entry_fee|idr_to_usd|format_usd }}
{% endif %}
{% empty %}
Belum ada lokasi wisata

Mulai dengan menambahkan lokasi wisata pertama Anda.

Tambah Lokasi
{% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %} First Prev {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %} {{ num }} {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %} {{ num }} {% endif %} {% endfor %} {% if page_obj.has_next %} Next Last {% endif %}
{% endif %}
{% endblock content %} {% block extra_js %} {% endblock %}