{% extends 'base.html' %} {% block content %}

Process Desktime Logs

{% if summary %}
Summary

Total Records Updated: {{ summary.total_updated }}

{% if summary.errors %}
Errors:
{% endif %} {% if logs %}
Updated Attendance Records
{% for log in logs %} {% endfor %}
Employee Date Working Hours Remarks Source
{{ log.employee.full_name }} ({{ log.employee.employee_code }}) {{ log.date.strftime('%Y-%m-%d') }} {{ log.working_hours }} {{ log.remarks }} {{ log.source }}
{% endif %} {% endif %}
{% endblock %}