Localize month names in the statistics view

This commit is contained in:
Baptiste Jonglez 2021-07-18 15:08:34 +02:00 committed by zorun
parent 9a5badd3be
commit 9217360973

View file

@ -27,7 +27,7 @@
<tbody>
{% for month in months %}
<tr>
<td>{{ _(month.strftime("%B")) }} {{ month.year }}</td>
<td>{{ month|dateformat("MMMM yyyy") }}</td>
<td>{{ monthly_stats[month.year][month.month]|currency }}</td>
</tr>
{% endfor %}