diff options
Diffstat (limited to 'core/forms.py')
-rw-r--r-- | core/forms.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/forms.py b/core/forms.py index 907f6ce..42ed0e0 100644 --- a/core/forms.py +++ b/core/forms.py @@ -54,10 +54,10 @@ class CaveForm(ModelForm): self._errors["url"] = self.error_class(["This field cannot start with a /."]) return self.cleaned_data -class VersionControlCommentForm(forms.Form): - '''Was appended to all forms. Not used currently - ''' - description_of_change = forms.CharField(required = True, widget=forms.Textarea(attrs={'rows':2})) +# class VersionControlCommentForm(forms.Form): + # '''Was appended to all forms. Not used currently + # ''' + # description_of_change = forms.CharField(required = True, widget=forms.Textarea(attrs={'rows':2})) class EntranceForm(ModelForm): |