Fix issue with chrome date on program

Fix
This commit is contained in:
2015-09-20 19:33:06 +02:00
parent c058eb9245
commit 32b0c0917d
+2 -2
View File
@@ -149,8 +149,8 @@ def JSON_Progamme_Request(request):
ListEv.append( {
"uid":"%d/%d" % ( year, ev.uid ),
"desc":ev.name,
"startDate":ev.start_time.strftime('%Y-%m-%dT%H:%M:%S'),
"endDate":ev.end_time.strftime('%Y-%m-%dT%H:%M:%S'),
"startDate":ev.start_time.strftime('%Y-%m-%dT%H:%M:%S+01:00'),
"endDate":ev.end_time.strftime('%Y-%m-%dT%H:%M:%S+01:00'),
"placeName":ev.Salle and (ev.Salle.name or "unk") ,
"status":ev.event_type
} )