{% load staticfiles %} {%if total != 100%}
× Warning! Total sum of weightage of all exams is {{total}}% and should be 100%
Click on exam name to manage weightage or add new exam.
{%endif%}


{% csrf_token %}

Grade Management System


{{course1}} Marks:

{%for exam in course1.exam_set.all%} {%endfor%} {%for student in course1.students.all%} {%for exam in course1.exam_set.all%} {%endfor%} {%for total_marks in student.total_marks_set.all%} {% if total_marks.course == course1 %} {% endif %} {%endfor%} {%endfor%}
STUDENTS {{exam.name}} [ MM:{{exam.total_marks}} , {{exam.weightage}}%]Weighted Sum  ( out of {{total}} )
{% for r in result %} {% if r.exam == exam and r.student == student %} {% with marks=r.gained_marks %} {% endwith %} {% endif %} {% endfor %}
Back to Home