Private
Public Access
1
0

Merge tag 'v9.34' into develop

fixed
This commit is contained in:
Sander Roosendaal
2019-02-27 08:15:15 +01:00

View File

@@ -174,11 +174,11 @@ def workout_summary_to_df(
weightvalues.append(w.weightvalue)
notes.append(w.notes)
tcx_link = SITE_URL+'/rowers/workout/{id}/emailtcx'.format(
id=w.id
id=encoder.encode_hex(w.id)
)
tcx_links.append(tcx_link)
csv_link = SITE_URL+'/rowers/workout/{id}/emailcsv'.format(
id=w.id
id=encoder.encode_hex(w.id)
)
csv_links.append(csv_link)
trimps.append(workout_trimp(w)[0])