+ comment = forms.CharField(
+ required=False,
+ widget=forms.Textarea,
+ label=_(u"Your comments"),
+ help_text=_(u"Describe changes you made."),
+ )
+
+ stage = forms.ChoiceField(
+ choices=[(s, s) for s in STAGES],
+ required=False,
+ label=_(u"Stage"),
+ help_text=_(u"If completed a work stage, change to another one."),
+ )