{% extends 'hrms/layout.html' %} {% load static %} {% block title %} Attendance| ITSC-HRMS {% endblock title %} {% block content %}

  Employee Attendance


{% csrf_token %} ** All Fields are required
{{form.errors}}
Date Staffer Status
{{today}} {{form.staff}} {{form.status}}


{% if present_staffers %} This is a list of staffer(s) that are currently present.
{% for ps in present_staffers %} {% endfor %}
Date First-In (Arrival) Last-Out (Departure) Name Action(s)
{{today}} {{ps.first_in}} {{ps.last_out }} {{ps.staff.first_name}} - {{ps.staff.last_name}} Sign-out
{% else %}

There are currently no staffers in the system

{% endif %}
{% endblock content %}