manager: don't add a leading zero to day numbers in month view (#29432)

This commit is contained in:
Frédéric Péters 2019-01-03 16:35:40 +01:00
parent ac9705a167
commit bce2afa53c
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
<tr>
<th></th>
{% for day in week_days.days %}
<th class="weekday{% if day.date.day == view.date.day %} current-day{% endif %}">{% if not day.other_month %}<a href="{% url 'chrono-manager-agenda-day-view' pk=agenda.id year=day.date|date:"Y" month=day.date|date:"m" day=day.date|date:"d" %}">{{ day.date|date:"l d" }}</a>{% endif %}</th>
<th class="weekday{% if day.date.day == view.date.day %} current-day{% endif %}">{% if not day.other_month %}<a href="{% url 'chrono-manager-agenda-day-view' pk=agenda.id year=day.date|date:"Y" month=day.date|date:"m" day=day.date|date:"d" %}">{{ day.date|date:"l j" }}</a>{% endif %}</th>
{% endfor %}
</tr>
{% for hour in week_days.periods %}