Make optional the comment field of workflow transition form
This commit is contained in:
@@ -39,7 +39,7 @@ class WorkflowInstanceTransitionForm(forms.Form):
|
||||
self.fields['transition'].choices = workflow.get_transition_choices().values_list('pk', 'label')
|
||||
|
||||
transition = forms.ChoiceField(label=_('Transition'))
|
||||
comment = forms.CharField(label=_('Comment'), widget=forms.widgets.Textarea())
|
||||
comment = forms.CharField(label=_('Comment'), required=False, widget=forms.widgets.Textarea())
|
||||
|
||||
|
||||
class WorkflowInstanceDetailForm(DetailForm):
|
||||
|
||||
Reference in New Issue
Block a user