diff options
author | cfdv <caldavis@gmail.com> | 2011-06-18 16:42:22 -0500 |
---|---|---|
committer | cfdv <caldavis@gmail.com> | 2011-06-18 16:42:22 -0500 |
commit | 630b57a366d10495a89d392c9b02cf432e6a1599 (patch) | |
tree | c4ba80c7be6535fe2eb8f9d07e7a072643b94edb /mediagoblin/db/models.py | |
parent | 279d925e757d9756e09e14316f0d85b6e20624ea (diff) | |
download | mediagoblin-630b57a366d10495a89d392c9b02cf432e6a1599.tar.lz mediagoblin-630b57a366d10495a89d392c9b02cf432e6a1599.tar.xz mediagoblin-630b57a366d10495a89d392c9b02cf432e6a1599.zip |
baby step towards enabling profile edits
adds
* url and bio fields to database
* form for editing the user profile
* route to the edit profile controller
* view for the profile editing page
* template for the profile editing page
* link to edit profile in the welcome page
still needs
* thorough inspection to see if it makes sense
* tests
* ?
Diffstat (limited to 'mediagoblin/db/models.py')
-rw-r--r-- | mediagoblin/db/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index 4b6518cc..78bec979 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -46,7 +46,7 @@ class User(Document): 'status': unicode, 'verification_key': unicode, 'is_admin': bool, - 'website_url' : unicode, + 'url' : unicode, 'bio' : unicode } |