Several small UI changes to edit profile page: moved header, changed form wording, changed css class

This commit is contained in:
Jef van Schendel
2011-06-22 17:02:28 +02:00
parent 7f8a70ef25
commit 1db7bed64b
2 changed files with 6 additions and 6 deletions

View File

@@ -27,8 +27,8 @@ class EditForm(wtforms.Form):
description = wtforms.TextAreaField('Description of this work')
class EditProfileForm(wtforms.Form):
url = wtforms.TextField(
'website URL',
[wtforms.validators.URL(message='Improperly formed URL')])
bio = wtforms.TextAreaField('bio',
bio = wtforms.TextAreaField('Bio',
[wtforms.validators.Length(min=0, max=500)])
url = wtforms.TextField(
'Website',
[wtforms.validators.URL(message='Improperly formed URL')])