From c27ecd5bdbeabfa949c6c380424a7b0a3ceeb74c Mon Sep 17 00:00:00 2001 From: saksham1115 Date: Fri, 15 Jul 2016 23:46:06 +0000 Subject: [PATCH] Creating plugin forms.py --- mediagoblin/plugins/custom_subtitles/forms.py | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 mediagoblin/plugins/custom_subtitles/forms.py diff --git a/mediagoblin/plugins/custom_subtitles/forms.py b/mediagoblin/plugins/custom_subtitles/forms.py new file mode 100644 index 00000000..69afd6e7 --- /dev/null +++ b/mediagoblin/plugins/custom_subtitles/forms.py @@ -0,0 +1,29 @@ +# GNU MediaGoblin -- federated, autonomous media hosting +# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +import wtforms + +class CustomizeSubtitlesForm(wtforms.Form): + subtitle = wtforms.TextAreaField( + ('Subtitle'), + [wtforms.validators.Optional()], + description=("")) + +class EditSubtitlesForm(wtforms.Form): + subtitle_language = wtforms.StringField( + 'Language') + subtitle_file = wtforms.FileField( + 'File') \ No newline at end of file