diff options
author | saksham1115 <saksham115@gmail.com> | 2016-07-16 00:19:53 +0000 |
---|---|---|
committer | saksham1115 <saksham115@gmail.com> | 2016-07-19 17:29:25 +0000 |
commit | 6a3fe50e8fde11f952df671446e13091369cebc3 (patch) | |
tree | 3917ac8a634b92c98affbd9ae33902bcceeff84d /mediagoblin/edit/forms.py | |
parent | 3af2d38d29c33de32b7578e4f01197f33b0b20e9 (diff) | |
download | mediagoblin-6a3fe50e8fde11f952df671446e13091369cebc3.tar.lz mediagoblin-6a3fe50e8fde11f952df671446e13091369cebc3.tar.xz mediagoblin-6a3fe50e8fde11f952df671446e13091369cebc3.zip |
Removed almost all of the code from core
Diffstat (limited to 'mediagoblin/edit/forms.py')
-rw-r--r-- | mediagoblin/edit/forms.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index 7208593b..83e83c3c 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -78,12 +78,6 @@ class EditProfileForm(wtforms.Form): location = wtforms.StringField(_('Hometown')) -class CustomizeSubtitlesForm(wtforms.Form): - subtitle = wtforms.TextAreaField( - _('Subtitle'), - [wtforms.validators.Optional()], - description=_("")) - class EditAccountForm(wtforms.Form): wants_comment_notification = wtforms.BooleanField( @@ -106,12 +100,6 @@ class EditAttachmentsForm(wtforms.Form): attachment_file = wtforms.FileField( 'File') -class EditSubtitlesForm(wtforms.Form): - subtitle_language = wtforms.StringField( - 'Language') - subtitle_file = wtforms.FileField( - 'File') - class EditCollectionForm(wtforms.Form): title = wtforms.StringField( |