diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-05-06 12:39:23 -0400 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-05-06 12:39:23 -0400 |
commit | fffc5dcfe031d30551a91e668b377d443d9267db (patch) | |
tree | 90dc14caa92ca90e461c38067b16758b586f6434 /mediagoblin/edit/forms.py | |
parent | 9f5d388ec01c195ffbacc4a1fd876fb507a6f62d (diff) | |
download | mediagoblin-fffc5dcfe031d30551a91e668b377d443d9267db.tar.lz mediagoblin-fffc5dcfe031d30551a91e668b377d443d9267db.tar.xz mediagoblin-fffc5dcfe031d30551a91e668b377d443d9267db.zip |
Created the media metadata editor page
Diffstat (limited to 'mediagoblin/edit/forms.py')
-rw-r--r-- | mediagoblin/edit/forms.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index 2c9b5e99..cff3a53f 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -122,3 +122,8 @@ class ChangeEmailForm(wtforms.Form): [wtforms.validators.Required()], description=_( "Enter your password to prove you own this account.")) + +class EditMetaDataForm(wtforms.Form): + media_metadata = wtforms.FieldList( + wtforms.TextField( + _(u'Value'))) |