added boat type to upload form
This commit is contained in:
@@ -821,6 +821,7 @@ from utils import totaltime_sec_to_string
|
|||||||
|
|
||||||
# Processes painsled CSV file to database
|
# Processes painsled CSV file to database
|
||||||
def save_workout_database(f2, r, dosmooth=True, workouttype='rower',
|
def save_workout_database(f2, r, dosmooth=True, workouttype='rower',
|
||||||
|
boattype='1x',
|
||||||
dosummary=True, title='Workout',
|
dosummary=True, title='Workout',
|
||||||
workoutsource='unknown',
|
workoutsource='unknown',
|
||||||
notes='', totaldist=0, totaltime=0,
|
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,
|
w = Workout(user=r, name=title, date=workoutdate,
|
||||||
workouttype=workouttype,
|
workouttype=workouttype,
|
||||||
|
boattype=boattype,
|
||||||
duration=duration, distance=totaldist,
|
duration=duration, distance=totaldist,
|
||||||
weightcategory=r.weightcategory,
|
weightcategory=r.weightcategory,
|
||||||
starttime=workoutstarttime,
|
starttime=workoutstarttime,
|
||||||
@@ -1229,6 +1231,7 @@ def handle_nonpainsled(f2, fileformat, summary=''):
|
|||||||
def new_workout_from_file(r, f2,
|
def new_workout_from_file(r, f2,
|
||||||
workouttype='rower',
|
workouttype='rower',
|
||||||
title='Workout',
|
title='Workout',
|
||||||
|
boattype='1x',
|
||||||
makeprivate=False,
|
makeprivate=False,
|
||||||
notes=''):
|
notes=''):
|
||||||
message = None
|
message = None
|
||||||
@@ -1325,6 +1328,7 @@ def new_workout_from_file(r, f2,
|
|||||||
id, message = save_workout_database(
|
id, message = save_workout_database(
|
||||||
f2, r,
|
f2, r,
|
||||||
workouttype=workouttype,
|
workouttype=workouttype,
|
||||||
|
boattype=boattype,
|
||||||
makeprivate=makeprivate,
|
makeprivate=makeprivate,
|
||||||
dosummary=dosummary,
|
dosummary=dosummary,
|
||||||
workoutsource=fileformat,
|
workoutsource=fileformat,
|
||||||
@@ -1450,6 +1454,7 @@ def new_workout_from_df(r, df,
|
|||||||
oarlength = parent.oarlength
|
oarlength = parent.oarlength
|
||||||
inboard = parent.inboard
|
inboard = parent.inboard
|
||||||
workouttype = parent.workouttype
|
workouttype = parent.workouttype
|
||||||
|
boattype = parent.boattype
|
||||||
notes = parent.notes
|
notes = parent.notes
|
||||||
summary = parent.summary
|
summary = parent.summary
|
||||||
if parent.privacy == 'hidden':
|
if parent.privacy == 'hidden':
|
||||||
@@ -1494,6 +1499,7 @@ def new_workout_from_df(r, df,
|
|||||||
|
|
||||||
id, message = save_workout_database(csvfilename, r,
|
id, message = save_workout_database(csvfilename, r,
|
||||||
workouttype=workouttype,
|
workouttype=workouttype,
|
||||||
|
boattype=boattype,
|
||||||
title=title,
|
title=title,
|
||||||
notes=notes,
|
notes=notes,
|
||||||
oarlength=oarlength,
|
oarlength=oarlength,
|
||||||
|
|||||||
@@ -78,14 +78,19 @@ class DocumentsForm(forms.Form):
|
|||||||
|
|
||||||
workouttype = forms.ChoiceField(required=True,
|
workouttype = forms.ChoiceField(required=True,
|
||||||
choices=Workout.workouttypes)
|
choices=Workout.workouttypes)
|
||||||
# initial='rower')
|
|
||||||
|
boattype = forms.ChoiceField(required=True,
|
||||||
|
choices=types.boattypes,
|
||||||
|
label = "Boat Type")
|
||||||
|
|
||||||
|
|
||||||
notes = forms.CharField(required=False,
|
notes = forms.CharField(required=False,
|
||||||
widget=forms.Textarea)
|
widget=forms.Textarea)
|
||||||
|
|
||||||
offline = forms.BooleanField(initial=False,required=False,
|
offline = forms.BooleanField(initial=False,required=False,
|
||||||
label='Process in Background')
|
label='Process in Background')
|
||||||
class Meta:
|
class Meta:
|
||||||
fields = ['title','file','workouttype','fileformat','offline']
|
fields = ['title','file','workouttype','boattype','fileformat','offline']
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
from django.forms.widgets import HiddenInput
|
from django.forms.widgets import HiddenInput
|
||||||
|
|||||||
@@ -134,7 +134,6 @@
|
|||||||
|
|
||||||
var data = new FormData(frm[0]);
|
var data = new FormData(frm[0]);
|
||||||
|
|
||||||
|
|
||||||
$('#id_file').on('change', function(evt) {
|
$('#id_file').on('change', function(evt) {
|
||||||
var f = this.files[0];
|
var f = this.files[0];
|
||||||
console.log(f);
|
console.log(f);
|
||||||
|
|||||||
@@ -170,7 +170,7 @@
|
|||||||
<td>{{ record.boattype }}</td>
|
<td>{{ record.boattype }}</td>
|
||||||
<td>{{ record.age }}</td>
|
<td>{{ record.age }}</td>
|
||||||
<td>{{ record.weightcategory }}</td>
|
<td>{{ record.weightcategory }}</td>
|
||||||
{% if record.userid == rower.id %}
|
{% if record.userid == rower.id and 'withdrawbutton' in buttons %}
|
||||||
<td>
|
<td>
|
||||||
<a href="/rowers/virtualevent/{{ race.id }}/withdraw/{{ record.id }}" >Withdraw</a>
|
<a href="/rowers/virtualevent/{{ race.id }}/withdraw/{{ record.id }}" >Withdraw</a>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@@ -10150,6 +10150,11 @@ def workout_upload_view(request,
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
workouttype = 'rower'
|
workouttype = 'rower'
|
||||||
|
|
||||||
|
try:
|
||||||
|
boattype = docformoptions['boattype']
|
||||||
|
except KeyError:
|
||||||
|
boattype = '1x'
|
||||||
|
|
||||||
try:
|
try:
|
||||||
plottype = uploadoptions['plottype']
|
plottype = uploadoptions['plottype']
|
||||||
except KeyError:
|
except KeyError:
|
||||||
@@ -10213,8 +10218,11 @@ def workout_upload_view(request,
|
|||||||
|
|
||||||
t = form.cleaned_data['title']
|
t = form.cleaned_data['title']
|
||||||
workouttype = form.cleaned_data['workouttype']
|
workouttype = form.cleaned_data['workouttype']
|
||||||
|
boattype = form.cleaned_data['boattype']
|
||||||
|
|
||||||
request.session['docformoptions'] = {
|
request.session['docformoptions'] = {
|
||||||
'workouttype':workouttype,
|
'workouttype':workouttype,
|
||||||
|
'boattype': boattype,
|
||||||
}
|
}
|
||||||
|
|
||||||
notes = form.cleaned_data['notes']
|
notes = form.cleaned_data['notes']
|
||||||
@@ -10243,6 +10251,8 @@ def workout_upload_view(request,
|
|||||||
'upload_to_MapMyFitness':upload_to_ua,
|
'upload_to_MapMyFitness':upload_to_ua,
|
||||||
'upload_to_TrainingPeaks':upload_to_tp,
|
'upload_to_TrainingPeaks':upload_to_tp,
|
||||||
'landingpage':landingpage,
|
'landingpage':landingpage,
|
||||||
|
'boattype': boattype,
|
||||||
|
'workouttype': workouttype,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -10255,6 +10265,7 @@ def workout_upload_view(request,
|
|||||||
id,message,f2 = dataprep.new_workout_from_file(
|
id,message,f2 = dataprep.new_workout_from_file(
|
||||||
r,f2,
|
r,f2,
|
||||||
workouttype=workouttype,
|
workouttype=workouttype,
|
||||||
|
boattype=boattype,
|
||||||
makeprivate=makeprivate,
|
makeprivate=makeprivate,
|
||||||
title = t,
|
title = t,
|
||||||
notes=''
|
notes=''
|
||||||
@@ -10529,6 +10540,7 @@ def team_workout_upload_view(request,message="",
|
|||||||
id,message,f2 = dataprep.new_workout_from_file(
|
id,message,f2 = dataprep.new_workout_from_file(
|
||||||
r,f2,
|
r,f2,
|
||||||
workouttype=workouttype,
|
workouttype=workouttype,
|
||||||
|
boattype=boattype,
|
||||||
makeprivate=False,
|
makeprivate=False,
|
||||||
title = t,
|
title = t,
|
||||||
notes=''
|
notes=''
|
||||||
|
|||||||
Reference in New Issue
Block a user