{% extends 'base.html' %} {% block title %}Students{% endblock title %} {% block breadcrumb %} New student Upload students {% endblock breadcrumb %} {% block content %}
{% for student in students %} {% endfor %}
S/N Fullname Registration Number Current Class Gender Mobile Phone Number Status
{{ forloop.counter}} {{ student.surname}} {{student.firstname }} {{student.other_name }} {{ student.registration_number}} {{ student.current_class}} {{ student.get_gender_display}} {{ student.parent_mobile_number}} {{ student.get_current_status_display}}
{% endblock content %} {% block morejs %} {% endblock morejs %}