diff --git a/rowers/forms.py b/rowers/forms.py index ce4faf29..f1bf9dbc 100644 --- a/rowers/forms.py +++ b/rowers/forms.py @@ -53,6 +53,7 @@ class FlexibleDecimalField(forms.DecimalField): # Video Analysis creation form class VideoAnalysisCreateForm(forms.Form): + name = forms.CharField(max_length=255,label='') url = forms.CharField(max_length=255,required=True,label='YouTube Video URL') delay = forms.IntegerField(initial=0,label='Delay (seconds)')