From 330f409ee91ad142a70617cf05a68916ef6c591e Mon Sep 17 00:00:00 2001 From: saksham1115 Date: Mon, 20 Jun 2016 05:47:43 +0000 Subject: Customizing Subs using Wtforms --- mediagoblin/edit/forms.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'mediagoblin/edit/forms.py') diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index c9eae429..7208593b 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -78,6 +78,12 @@ 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( -- cgit v1.2.3