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

{% for result in results %} {% endfor %}
# Subject Total Theory Practical
{{ forloop.counter }} {{ result.subject }} {{ result.total_marks }} {{ result.theory_marks }} {{ result.practical_marks }}
{% endblock %} {% block extrajs %} {% endblock %}