{% extends 'layout.html' %} {% load static %} {% load student_tags %} {% block content %} Dashboard {{ student.admission_student.name }} {{ student.admission_student.choosen_department }} {{ student.semester }} Temporary ID: {{ student.temporary_id }} {% if student.roll %} Roll: {{ student.roll }} {% endif %} {% if student.registration_number %} Registration: {{ student.registration_number }} {% endif %} Session: {{ student.ac_session }} {% if student.mobile %} Mobile: {{ student.mobile }} {% endif %} {% if student.email %} Mail: {{ student.email }} {% endif %} {% if student.guardian_mobile %} Guardian: {{ student.guardian_mobile }} {% endif %} Result Board # Subject Total Theory Practical {% for result in results %} {{ forloop.counter }} {{ result.subject }} {{ result.total_marks }} {{ result.theory_marks }} {{ result.practical_marks }} {% endfor %} {% endblock %} {% block extrajs %} {% endblock %}