diff --git a/smash/web/api_views/daily_planning.py b/smash/web/api_views/daily_planning.py index b3937a776a29f124b92726aeee4485d313b344a1..a6f03f5906fe97338dad89722276e279d2163b0f 100644 --- a/smash/web/api_views/daily_planning.py +++ b/smash/web/api_views/daily_planning.py @@ -248,7 +248,7 @@ def events(request, date): 'name': unicode(appointment_subject), 'id': appointment_subject.id, 'color': RANDOM_COLORS[i], - 'start': appointment.datetime_when.replace(tzinfo=None).strftime("%H:%M:00"), + 'start': appointment.datetime_when.replace(tzinfo=None).strftime("%H:%M"), # this indicates only location of the first appointment # (there is small chance to have two appointments in two different places at the same day) 'location': str(appointment.location),