{% 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):

{% for result in results %} {% endfor %}
Subject Marks GPA
{{ result.subject }} {{ result.marks }} {{ result.grade }}
{% endblock %} {% block extrajs %} {% endblock %}