{% extends 'public/base.html' %} {% load static %} {% block content %}
{% if village_profile.profile_image %}
{% else %}
{% endif %}
{% if village_profile.logo %} Logo Desa {% else %}
{% endif %}

{{ village_profile.name|default:"Desa Pulosarok" }}

{{ village_profile.district|default:"Singkil" }}, {{ village_profile.regency|default:"Kabupaten Aceh Singkil" }}, {{ village_profile.province|default:"Aceh" }}

{{ village_profile.description|default:"Desa Pulosarok adalah desa yang terletak di Kecamatan Singkil, Kabupaten Aceh Singkil, Aceh."|safe }}
{% if village_profile.vision or village_profile.mission %}
{% if village_profile.vision %}

Visi Desa

"{{ village_profile.vision|safe }}"
{% endif %} {% if village_profile.mission %}

Misi Desa

    {% for mission in village_profile.mission_list %}
  • {{ mission }}
  • {% endfor %}
{% endif %}
{% endif %} {% if officials_data %}

Perangkat Desa

{% for official in officials_data %}
{% if official.photo %} {{ official.name }} {% else %}
{% endif %}

{{ official.name }}

{{ official.position_display }}

{% if official.education %}

{{ official.education }}

{% endif %} {% if official.phone %}

{{ official.phone }}

{% endif %}
{% endfor %}
{% endif %} {% if facilities %}

Fasilitas Desa

{% for facility in facilities %}
{% if facility.image %} {{ facility.name }} {% else %}
{% endif %}

{{ facility.name }}

{{ facility.get_type_display }}

{{ facility.description|truncatewords:10 }}

{{ facility.get_condition_display }} {{ facility.location }}
{% endfor %}
{% endif %} {% if gallery_photos %}

Galeri Foto

{% for photo in gallery_photos %}
{% if photo.image %} {{ photo.title }} {% else %}
{% endif %}

{{ photo.title }}

{{ photo.description|truncatewords:8 }}

{{ photo.get_photo_type_display }} {% if photo.is_featured %} Unggulan {% endif %}
{% if photo.photographer %}

{{ photo.photographer }}

{% endif %} {% if photo.location %}

{{ photo.location }}

{% endif %}
{% endfor %}
{% endif %}

Lokasi Desa

{{ village_profile.district|default:"Singkil" }}, {{ village_profile.regency|default:"Kabupaten Aceh Singkil" }}, {{ village_profile.province|default:"Aceh" }}

{% if village_profile.phone %}

{{ village_profile.phone }}

{% endif %} {% if village_profile.email %}

{{ village_profile.email }}

{% endif %}

Informasi Desa

Kepala Desa: {{ village_profile.village_head|default:"-" }}

Luas Wilayah: {{ village_profile.area|default:"10.5" }} km²

Kode Pos: {{ village_profile.postal_code|default:"92700" }}

{% endblock content %}