Hide time values for all-day events

This commit is contained in:
Gergely Polonkai 2018-07-21 06:50:17 +02:00
parent cb9a62cd88
commit 8eb52ff7f4
1 changed files with 2 additions and 0 deletions

View File

@ -56,7 +56,9 @@
<span class="day-num">{{ day.day }}</span>
{% for event in calendar.day_events(day, user=current_user if user_only else none) %}
<a href="{{ url_for('event_details', event_uuid=event.event_uuid) }}" class="event">
{% if not event.all_day %}
{{ event.start_time_for_user(current_user).strftime('%H:%M') }}{{ event.end_time_for_user(current_user).strftime('%H:%M') }}
{% endif %}
{{ event.title }}
</a>
{% endfor %}