{% extends "base.html" %} {% block auth_content %}
{% if current_user.school.status == 'pending' %}

Menunggu Persetujuan

Sekolah {{ current_user.school.name }} sedang dalam proses verifikasi oleh Super Admin.

Insya Allah proses tidak akan lama. Silakan cek kembali nanti.

{% elif current_user.school.status == 'rejected' %}

Pendaftaran Ditolak

Mohon maaf, pendaftaran sekolah {{ current_user.school.name }} tidak disetujui.

{% if current_user.school.rejection_reason %}

Alasan:

{{ current_user.school.rejection_reason }}

{% endif %} {% elif current_user.school.status == 'suspended' %}

Sekolah Ditangguhkan

Akses sekolah {{ current_user.school.name }} telah ditangguhkan. Hubungi Super Admin untuk informasi lebih lanjut.

{% endif %} Keluar
{% endblock %}