app/urls.py
changeset 141 e120c24b89e2
parent 132 15d89c284106
child 170 1fadf6e0348d
--- 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<linkname>[_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<linkname>[_0-9a-z]+)$',