diff --git a/rowers/forms.py b/rowers/forms.py index f06ae90c..7b7f2cc4 100644 --- a/rowers/forms.py +++ b/rowers/forms.py @@ -131,21 +131,21 @@ class WorkFlowMiddlePanelForm(forms.Form): super(WorkFlowMiddlePanelForm,self).__init__(*args, **kwargs) class WorkFlowLeftPanelElement(forms.Form): - panelchoices = tuple(list(workflowleftpanel)+[(None,'None')]) + panelchoices = tuple(list(workflowleftpanel)+[('None','None')]) panel = forms.ChoiceField( label='', choices=panelchoices, - initial=None, + initial='None', ) class WorkFlowMiddlePanelElement(forms.Form): - panelchoices = tuple(list(workflowmiddlepanel)+[(None,'None')]) + panelchoices = tuple(list(workflowmiddlepanel)+[('None','None')]) panel = forms.ChoiceField( label='', choices=panelchoices, - initial=None, + initial='None', ) diff --git a/rowers/templates/workflowconfig2.html b/rowers/templates/workflowconfig2.html index 67153891..e9465081 100644 --- a/rowers/templates/workflowconfig2.html +++ b/rowers/templates/workflowconfig2.html @@ -6,7 +6,7 @@ -{{ formmiddle.media }} +
- {{ leftpanel_formset.management_form }} -