{% extends 'partials/base.html' %} {% load static %} {% load custom_filters %} {% block content %}
{% block title %} {% include "partials/page-title.html" with pagetitle="Dashboard" title="Student Attendance" %} {% endblock title %}

Student Attendance List

{% comment %}
{% for record in studentdata %} {% with student_id=record.user.id %} {% with existing=studentattenddata|get_student_attendance:student_id %} {% endwith %} {% endwith %} {% endfor %}
Name Class Section
Notes
{{lecture.class_assigned.class_name}} {{lecture.class_assigned.section_name}}
{% if studentdata %} {% endif %}
{% endcomment %}
{% endblock content %} {% block javascript %} {{ block.super }} {% endblock %}