{% extends "base.html" %} {% block title %}Detail Sekolah{% endblock %} {% block page_title %}Detail Sekolah{% endblock %} {% block content %} Kembali ke daftar

{{ school.name }}

NPSN: {{ school.npsn }}

{% if school.status == 'pending' %} Menunggu {% elif school.status == 'approved' %} Aktif {% elif school.status == 'rejected' %} Ditolak {% else %} Ditangguhkan {% endif %}

Alamat

{{ school.address or '-' }}

Telepon

{{ school.phone or '-' }}

Email Sekolah

{{ school.email or '-' }}

Tanggal Daftar

{{ school.created_at.strftime('%d %B %Y, %H:%M') }}

{% if admin %}

Admin Sekolah

{{ admin.name[0]|upper }}

{{ admin.name }}

{{ admin.email }}

{% endif %}

Statistik

Guru {{ guru_count }}
Murid {{ murid_count }}

Aksi

Edit Data Sekolah {% if school.status == 'pending' %}
{% elif school.status == 'approved' %}
{% elif school.status == 'rejected' or school.status == 'suspended' %}
{% endif %}
{% if school.rejection_reason %}

Alasan Penolakan:

{{ school.rejection_reason }}

{% endif %}
{% endblock %}