{% extends 'base.html' %} {% block title %}{{ title }} | Learning management system{% endblock title %} {% load static %} {% block content %}

Students result form | {{ course|truncatechars:15 }}

{{ course.summary }}

{% include 'snippets/messages.html' %}
{% csrf_token %}
Grade report

{{ current_semester }} Semester {{ current_session }}

{% for student in students %} {% if student.comment == 'PASS' %} {% elif student.comment == 'FAIL' %} {% else %} {% endif %} {% empty %} {% endfor %}
# Student Assignment Mid exam Quiz Attendance Final exam Total Point Grade Comment
{{ forloop.counter }} {{ student.student.student.username }} {{ student.total }} {{ student.point }} {{ student.grade }}✓ {{ student.comment }}⨂ {{ student.comment }}
No Student.
{% endblock content %}