90 lines
4.1 KiB
Twig
90 lines
4.1 KiB
Twig
{% extends 'reporting/layout.html.twig' %}
|
|
|
|
{% block report_title %}{{ report_title|trans({}, 'reporting') }}{% endblock %}
|
|
|
|
{% block report %}
|
|
|
|
{% embed '@AdminLTE/Widgets/box-widget.html.twig' %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% block box_before %}
|
|
{{ form_start(form, {'attr': {'class': 'form-inline'}}) }}
|
|
{% endblock %}
|
|
{% block box_after %}
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|
|
{% block box_title %}
|
|
{{ form_widget(form.date) }}
|
|
{% endblock %}
|
|
{% block box_body_class %}{{ box_id }} table-responsive {% if hasData %}no-padding{% endif %}{% endblock %}
|
|
{% block box_body %}
|
|
{% if not hasData %}
|
|
{{ widgets.nothing_found() }}
|
|
{% else %}
|
|
{% set absoluteTotals = 0 %}
|
|
{% set totals = {} %}
|
|
<table class="table table-bordered table-hover dataTable">
|
|
<tr>
|
|
<th> </th>
|
|
<th> </th>
|
|
{% for day in stats.0.getDateTimes() %}
|
|
<th class="text-center text-nowrap{% if day is weekend %} weekend{% endif %}">
|
|
{{ day|day_name(true) }}<br>
|
|
{{ day|format_date('short') }}
|
|
</th>
|
|
{% set totals = totals|merge({(day|report_date): 0}) %}
|
|
{% endfor %}
|
|
</tr>
|
|
{% for userDay in stats %}
|
|
{% set usersTotalDuration = 0 %}
|
|
<tr class="user">
|
|
<td class="text-nowrap">
|
|
{{ widgets.label_dot(userDay.user.displayName, userDay.user.color) }}
|
|
</td>
|
|
{% for day in userDay.days %}
|
|
{% if day.totalDuration > 0 %}
|
|
{% set usersTotalDuration = usersTotalDuration + day.totalDuration %}
|
|
{% set absoluteTotals = absoluteTotals + day.totalDuration %}
|
|
{% endif %}
|
|
{% set totals = totals|merge({(day.date|report_date): (totals[day.date|report_date] + day.totalDuration)}) %}
|
|
{% endfor %}
|
|
<th class="text-nowrap text-center total">
|
|
<a href="{{ path(subReportRoute, {'date': subReportDate|report_date, 'user': userDay.user.id}) }}">{{ usersTotalDuration|duration }}</a>
|
|
</th>
|
|
{% for day in userDay.days %}
|
|
<td class="text-nowrap text-center day-total{% if day.date is weekend %} weekend{% endif %}">
|
|
{% if day.totalDuration > 0 %}
|
|
{{ day.totalDuration|duration }}
|
|
{% endif %}
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
<tr>
|
|
<th> </th>
|
|
<th class="text-center text-nowrap">
|
|
{{ absoluteTotals|duration }}
|
|
</th>
|
|
{% for id, duration in totals %}
|
|
<th class="text-center text-nowrap">
|
|
{{ duration|duration }}
|
|
</th>
|
|
{% endfor %}
|
|
</tr>
|
|
</table>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% endembed %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{{ parent() }}
|
|
<script type="text/javascript">
|
|
document.addEventListener('kimai.initialized', function() {
|
|
jQuery('#{{ form.date.vars.id }}').on('change', function(ev) {
|
|
jQuery(this).closest('form').submit();
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|