aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/edit/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'mediagoblin/edit/forms.py')
-rw-r--r--mediagoblin/edit/forms.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py
index fb4930a2..2efdb9e4 100644
--- a/mediagoblin/edit/forms.py
+++ b/mediagoblin/edit/forms.py
@@ -27,8 +27,8 @@ class EditForm(wtforms.Form):
description = wtforms.TextAreaField('Description of this work')
class EditProfileForm(wtforms.Form):
+ bio = wtforms.TextAreaField('Bio',
+ [wtforms.validators.Length(min=0, max=500)])
url = wtforms.TextField(
- 'website URL',
+ 'Website',
[wtforms.validators.URL(message='Improperly formed URL')])
- bio = wtforms.TextAreaField('bio',
- [wtforms.validators.Length(min=0, max=500)])