{% extends 'layout.html' %} {% load static %} {% load student_tags %} {% block content %} Dashboard {{ student.name }} {{ student.department }} {{ student.semester }} 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(s): Subject Marks GPA {% for result in results %} {{ result.subject }} {{ result.marks }} {{ result.grade }} {% endfor %} {% endblock %} {% block extrajs %} {% endblock %}