{% extends 'partials/base.html' %} {% load static %} {% block content %}
{% block title %} {% include "partials/title.html" with title="Student Report" text="Dashboard" textone="Report" texttwo="Student Report" %} {% endblock title %}

Student Report List

{% for record in student_report %} {% endfor %}
Admission No Roll No Name Class Section Gender Parent Date of Join DOB Status
{{record.Admission_No}} {{record.Roll_No}} {{record.Class}} {{record.Section}} {{record.Gender}} {{record.Date_of_Join}} {{record.DOB}} {{record.Status}}
{% endblock content %}