{% extends "admin/base_site.html" %}
{% comment %}
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
{% endcomment %}
{% load proto_tags %}
{% load i18n %}
{% block extrahead %}
{% endblock %}
{% block breadcrumbs %}
{% endblock %}
{% block content %}
Controle de horário mensal
{{ membro.nome }}
Total de banco de horas | {{total_geral_banco_horas}} |
Total de banco de férias | {{total_geral_ferias}} |
Total de horas por período
Mês |
Total de horas úteis |
Total trabalhado |
Total de dispensas |
Total de ferias |
Total banco de horas |
{% for m in meses %}
{{ m.mes }}/{{ m.ano }} |
{{ m.total_horas_periodo }} |
{{ m.total }} |
{{ m.total_horas_dispensa }} |
{{ m.total_horas_ferias }} |
{{ m.total_banco_horas }} |
{% endfor %}
Total |
{{ total_horas_periodo }} |
{{ total_horas }} |
{{ total_horas_dispensa }} |
{{ total_horas_ferias }} |
{{ total_banco_horas }} |
Horas mensais do período
{% for m in meses %}
{{ m.mes }}/{{ m.ano }} ({{ m.total }})
Total de horas úteis = {{ m.total_horas_periodo }}
Total de horas de dispensas = {{ m.total_horas_dispensa }}
Total de horas de ferias = {{ m.total_horas_ferias }}
Total banco de horas = {{ m.total_banco_horas }}
{% endfor %}
{% endblock %}