{% extends "exams/base.html" %} {% block content %} {% load static %}

Import Regions / Districts / Wards / Schools

{% csrf_token %}

Required columns: Download-Template

REGION | COUNCIL | WARD | SCHOOL NAME | SCHOOL_CODE | OWNERSHIP | SCHOOL_REGNO | LATITUDE | LONGITUDE

Removes "SECONDARY SCHOOL" from school names
{% csrf_token %}
Sets ownership to "PRIVATE" for codes starting with 'P'
{% csrf_token %}
{% if user.profile.role == "super_master" %}
DANGER ZONE: Deletes ALL regions, districts, wards that are NOT used anywhere
{% endif %}

Schools List
Export to Excel
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% for s in schools %} {% endfor %}
Code Reg No Name Ward District Region Ownership Lat Lng Actions
{{ s.school_code }} {{ s.school_regno|default:"—" }} {{ s.name }} {{ s.ward.name }} {{ s.district.name }} {{ s.region.name }} {{ s.ownership }} {{ s.latitude|default:"—" }} {{ s.longitude|default:"—" }} {% if s.can_delete %} {% else %} {% endif %}
{% endblock %}