{% extends 'base.html' %} {% block main_wrapper %}

Student Result Management System

Save as PDF

Student Name : {{ object.select_student.student_name | safe }}

Student Class : {{ object.select_class.class_name }} ( {{ object.select_class.section | safe }} )

Student Roll : {{ object.select_student.student_roll | safe }}

Mark Sheet

{% for mark in marks %} {% for m in mark %} {% endfor %} {% endfor %}
# Subject Name Mark
{{ forloop.counter }}{{ m }}
Back To Home
{% endblock main_wrapper %}