Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2020-05-24 13:15:21 +02:00
parent d2fd4fe562
commit e2c653848a

View File

@@ -2168,6 +2168,7 @@ def workout_view(request,id=0,raceresult=0):
row = get_workout_by_opaqueid(request,id)
f1 = row.csvfilename
rowdata = rdata(f1)
summary = row.summary
comments = WorkoutComment.objects.filter(workout=row)
@@ -2203,8 +2204,7 @@ def workout_view(request,id=0,raceresult=0):
activewindow = [startsecond,endsecond])
summary = rowdata.allstats()
except VirtualRaceResult.DoesNotExist:
summary = row.summary
pass
# create interactive plot
res = interactive_chart(encoder.decode_hex(id),intervaldata=intervaldata)
script = res[0]