{% extends "main/layout.html" %}
{% load crispy_forms_tags %}
{% block content %}
{{ emp|upper }}
TIPU | TOTAL |
{% for att_obj in att_objs %}
{{ att_obj.0.name }} | {{ att_obj.1 }} |
{% endfor %}
TOTAL HORAS SERVISU |
{{total_hours_all}} |
Sumariu {% if year %}
{{ year }}
{% endif %}
TIPU | TOTAL |
{% for att_y in att_objs_y %}
{{ att_y.0.name }} | {{ att_y.1 }} |
{% endfor %}
TOTAL HORAS SERVISU |
{{total_hours_year}} |
Sumariu {% if year or monthname %}
{{ monthname }} {{ year }}
{% endif %}
TIPU | TOTAL |
{% for att_m in att_objs_m %}
{{ att_m.0.name }} | {{ att_m.1 }} |
{% endfor %}
TOTAL HORAS SERVISU |
{{total_hours_month}} |
{% if data_for_weeks %}
TOTAL HORAS SERVISU KADA SEMANA
Nu. |
Semana |
Total Horas Servisu |
{% for obj in data_for_weeks %}
{{forloop.counter}} |
{{obj.0|date:"d/F/Y"}} - {{obj.1|date:"d/F/Y"}} |
{{obj.2}} |
{% endfor %}
{% endif %}
{% endblock %}
{% block scripts %}
{% endblock %}