fix locale date format in report header and more (#2520)

* fix problem with empty end datetime in edit time
* fixed calendar creation with tags in "pre-defined tags" mode
* fix locale date format in report header
This commit is contained in:
Kevin Papst
2021-04-21 22:23:32 +02:00
committed by GitHub
parent 305a2fd4f6
commit ff7a402bd4
5 changed files with 14 additions and 13 deletions

View File

@@ -39,7 +39,7 @@
{% for day in days %}
<th class="text-center text-nowrap{% if day.day is weekend %} weekend{% endif %}">
{{ day.day|day_name(true) }}<br>
{{ day.day|date_format('d.m') }}
{{ day.day|format_date('short') }}
</th>
{% endfor %}
</tr>

View File

@@ -24,7 +24,7 @@
{% for day in days %}
<th class="text-center text-nowrap{% if day is weekend %} weekend{% endif %}">
{{ day|day_name(true) }}<br>
{{ day|date_format('d.m') }}
{{ day|format_date('short') }}
</th>
{% endfor %}
</tr>