app/urls.py
changeset 66 8c86470746fc
parent 54 03e267d67478
child 79 58001ec7720c
--- a/app/urls.py	Mon Aug 11 16:44:47 2008 +0000
+++ b/app/urls.py	Mon Aug 11 16:57:46 2008 +0000
@@ -22,6 +22,9 @@
 
 urlpatterns = patterns(
     '',
-    (r'^person/profile/$', 'soc.views.person.profile',
-     {'template': 'proto/person/profile.html'}),
+    (r'^org/profile/(?P<program>ghop[_0-9a-z]+)/(?P<linkname>[_0-9a-z]+)/$',
+     'soc.views.person.profile.edit',
+     {'template': 'ghop/person/profile/edit.html'}),
+    (r'^org/profile/(?P<program>[_0-9a-z]+)/(?P<linkname>[_0-9a-z]+)/$',
+     'soc.views.person.profile.edit'),
 )