Private
Public Access
1
0

added boat type to upload form

This commit is contained in:
Sander Roosendaal
2018-06-01 16:18:33 +02:00
parent 4dbc08b6ba
commit c4475973f9
5 changed files with 26 additions and 4 deletions

View File

@@ -821,6 +821,7 @@ from utils import totaltime_sec_to_string
# Processes painsled CSV file to database
def save_workout_database(f2, r, dosmooth=True, workouttype='rower',
boattype='1x',
dosummary=True, title='Workout',
workoutsource='unknown',
notes='', totaldist=0, totaltime=0,
@@ -1001,6 +1002,7 @@ def save_workout_database(f2, r, dosmooth=True, workouttype='rower',
w = Workout(user=r, name=title, date=workoutdate,
workouttype=workouttype,
boattype=boattype,
duration=duration, distance=totaldist,
weightcategory=r.weightcategory,
starttime=workoutstarttime,
@@ -1229,6 +1231,7 @@ def handle_nonpainsled(f2, fileformat, summary=''):
def new_workout_from_file(r, f2,
workouttype='rower',
title='Workout',
boattype='1x',
makeprivate=False,
notes=''):
message = None
@@ -1325,6 +1328,7 @@ def new_workout_from_file(r, f2,
id, message = save_workout_database(
f2, r,
workouttype=workouttype,
boattype=boattype,
makeprivate=makeprivate,
dosummary=dosummary,
workoutsource=fileformat,
@@ -1450,6 +1454,7 @@ def new_workout_from_df(r, df,
oarlength = parent.oarlength
inboard = parent.inboard
workouttype = parent.workouttype
boattype = parent.boattype
notes = parent.notes
summary = parent.summary
if parent.privacy == 'hidden':
@@ -1494,6 +1499,7 @@ def new_workout_from_df(r, df,
id, message = save_workout_database(csvfilename, r,
workouttype=workouttype,
boattype=boattype,
title=title,
notes=notes,
oarlength=oarlength,