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

Daftar Paket Wisata

Kelola semua paket wisata Desa Pulosarok

Filter & Pencarian
Reset
{% for package in page_obj.object_list %}
{% if package.image %} {{ package.title }} {% else %}
{% endif %}
{% if package.is_featured %} Featured {% endif %}
{{ package.title|truncatechars:25 }}

{{ package.description|truncatechars:80 }}

Harga
{{ package.price|currency_idr }} {{ package.price|idr_to_usd|format_usd }}
Durasi {{ package.duration }}
Status {% if package.is_active %} Aktif {% else %} Nonaktif {% endif %}
Tipe {{ package.get_package_type_display }}
{% if package.tourism_location %}
{{ package.tourism_location.title|truncatechars:15 }}
{% endif %}
{% empty %}
Belum ada paket wisata

Mulai dengan menambahkan paket wisata pertama Anda.

Tambah Paket
{% 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 %}