diff -r c3d098d6fafa -r e120c24b89e2 app/urls.py --- a/app/urls.py Sat Sep 13 21:27:17 2008 +0000 +++ b/app/urls.py Sat Sep 13 22:00:51 2008 +0000 @@ -24,6 +24,8 @@ urlpatterns = patterns( '', (r'^$', 'soc.views.site.home.public'), + (r'^site/home$', 'soc.views.site.home.public'), + (r'^site/home/edit$', 'soc.views.site.home.edit'), # TODO(tlarsen): uncomment these when the view functions are committed # attempt to send User to their dashboard @@ -35,7 +37,9 @@ # 'soc.views.user.roles.dashboard'), (r'^site/user/lookup$', 'soc.views.site.user.profile.lookup'), - + (r'^site/user/profile/(?P[_0-9a-z]+)$', + 'soc.views.site.user.profile.edit'), + # TODO(tlarsen): uncomment these when the view functions are committed # (r'^site/user/profile$', 'soc.views.site.user.profile.create'), # (r'^site/user/profile/(?P[_0-9a-z]+)$',