Icons und Zeiterfassung Pausen und AutoBuchung
This commit is contained in:
parent
151b493780
commit
5bac1eeaaf
|
|
@ -23,12 +23,12 @@
|
|||
<tr>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col">Start</th>
|
||||
<th scope="col">Ende</th>
|
||||
<th scope="col">Arbeitszeit</th>
|
||||
<th scope="col">Pausen</th>
|
||||
<th scope="col">Gesamtzeit</th>
|
||||
<th scope="col">Gleitzeit</th>
|
||||
<th scope="col"><i class="fas fa-stopwatch"></i> Start</th>
|
||||
<th scope="col"><i class="fas fa-stopwatch"></i> Ende</th>
|
||||
<th scope="col"><i class="fas fa-clock"></i> Arbeitszeit</th>
|
||||
<th scope="col"><i class="fas fa-coffee"></i> Pausen</th>
|
||||
<th scope="col"><i class="fas fa-clock"></i> Gesamtzeit</th>
|
||||
<th scope="col"><i class="fas fa-user-clock"></i> Gleitzeit</th>
|
||||
<!--<th scope="col">Gleitzeitstand</th>-->
|
||||
<th scope="col"> </th>
|
||||
</tr>
|
||||
|
|
@ -214,7 +214,12 @@
|
|||
|
||||
|
||||
{% counterWDUp %}
|
||||
{{workday.start|date:"H:i"}}
|
||||
|
||||
{% if workday.start == workday.end %}
|
||||
Nichts gebucht
|
||||
{% else %}
|
||||
{{workday.start|date:"H:i"}}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
|
@ -235,8 +240,10 @@
|
|||
|
||||
|
||||
{% counterWDUp %}
|
||||
|
||||
{{workday.end|date:"H:i"}}
|
||||
{% if workday.start != workday.end %}
|
||||
{{workday.end|date:"H:i"}}
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
|
|
@ -252,7 +259,9 @@
|
|||
<br />
|
||||
{% endif %}
|
||||
{% counterWDUp %}
|
||||
{% getsumworkday workday as sumwd %}
|
||||
{% if workday.start != workday.end %}
|
||||
{% getsumworkday workday as sumwd %}
|
||||
{% endif %}
|
||||
{{sumwd}}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
|
@ -272,7 +281,13 @@
|
|||
{% counterWDUp %}
|
||||
|
||||
{% getsumbreak workday as sumbreakofday %}
|
||||
{{sumbreakofday}} min. ({{workday.breaks.all|length}})
|
||||
{% if workday.start != workday.end %}
|
||||
{% if workday.breaks.all|length > 0 %}
|
||||
{{sumbreakofday}} min. ({{workday.breaks.all|length}})
|
||||
{% else %}
|
||||
Keine Pausen
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
|
|
@ -292,7 +307,10 @@
|
|||
{% counterWDUp %}
|
||||
|
||||
{% getsumworkdayexcludebreak workday as sumworkday %}
|
||||
{{ sumworkday }}
|
||||
{% if workday.start != workday.end %}
|
||||
{{ sumworkday }}
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -29,12 +29,12 @@
|
|||
<tr>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col">Start</th>
|
||||
<th scope="col">Ende</th>
|
||||
<th scope="col">Arbeitszeit</th>
|
||||
<th scope="col">Pausen</th>
|
||||
<th scope="col">Gesamtzeit</th>
|
||||
<th scope="col">Gleitzeit</th>
|
||||
<th scope="col"><i class="fas fa-stopwatch"></i> Start</th>
|
||||
<th scope="col"><i class="fas fa-stopwatch"></i> Ende</th>
|
||||
<th scope="col"><i class="fas fa-clock"></i> Arbeitszeit</th>
|
||||
<th scope="col"><i class="fas fa-coffee"></i> Pausen</th>
|
||||
<th scope="col"><i class="fas fa-clock"></i> Gesamtzeit</th>
|
||||
<th scope="col"><i class="fas fa-user-clock"></i> Gleitzeit</th>
|
||||
<th scope="col"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
@ -211,7 +211,11 @@
|
|||
|
||||
|
||||
{% counterWDUp %}
|
||||
{{workday.start|date:"H:i"}}
|
||||
{% if workday.start == workday.end %}
|
||||
Nichts gebucht
|
||||
{% else %}
|
||||
{{workday.start|date:"H:i"}}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
|
@ -228,7 +232,10 @@
|
|||
<br />
|
||||
{% endif %}
|
||||
{% counterWDUp %}
|
||||
{{workday.end|date:"H:i"}}
|
||||
{% if workday.start != workday.end %}
|
||||
{{workday.end|date:"H:i"}}
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
|
|
@ -242,7 +249,9 @@
|
|||
<br />
|
||||
{% endif %}
|
||||
{% counterWDUp %}
|
||||
{% getsumworkday workday as sumwd %}
|
||||
{% if workday.start != workday.end %}
|
||||
{% getsumworkday workday as sumwd %}
|
||||
{% endif %}
|
||||
{{sumwd}}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
|
@ -258,7 +267,14 @@
|
|||
{% endif %}
|
||||
{% counterWDUp %}
|
||||
{% getsumbreak workday as sumbreakofday %}
|
||||
{{sumbreakofday}} min. ({{workday.breaks.all|length}})
|
||||
{% if workday.start != workday.end %}
|
||||
{% if workday.breaks.all|length > 0 %}
|
||||
{{sumbreakofday}} min. ({{workday.breaks.all|length}})
|
||||
{% else %}
|
||||
Keine Pausen
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
|
|
@ -273,7 +289,9 @@
|
|||
{% endif %}
|
||||
{% counterWDUp %}
|
||||
{% getsumworkdayexcludebreak workday as sumworkday %}
|
||||
{{ sumworkday }}
|
||||
{% if workday.start != workday.end %}
|
||||
{{ sumworkday }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -356,7 +356,7 @@
|
|||
<a style="color: #999; text-decoration: none;" href="https://digitale-agentur.com/impressum" target="_blank">Impressum</a>
|
||||
<br />
|
||||
<br />
|
||||
Version 1.0.5
|
||||
Version 1.0.7
|
||||
<br />
|
||||
<br />
|
||||
<a href="https://www.myvve.de/" target="_blank"><img src="{% static 'users/img/VVE-Logo.png' %}" width="27%" class="mb-2"></a>
|
||||
|
|
|
|||
Loading…
Reference in New Issue