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

All Attendance

Clear Filter
{% for date, lectures in grouped_rows.items %} {% if lectures %} {% for lec in lectures %} {% if forloop.first %} {% endif %} {% endfor %} {% else %} {% endif %} {% endfor %}
Date Course Module Time Status Notes
{{ date|date:'l, j F Y' }}{{ lec.course }} {{ lec.module }} {{ lec.time }} {{ lec.status }} {{ lec.notes }}
{{ date|date:'l, j F Y' }} No lectures scheduled
{% endblock %} {% block javascript %} {{ block.super }} {% endblock %}