diff -r d254d4577c30 -r 8c86470746fc app/urls.py --- 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/(?Pghop[_0-9a-z]+)/(?P[_0-9a-z]+)/$', + 'soc.views.person.profile.edit', + {'template': 'ghop/person/profile/edit.html'}), + (r'^org/profile/(?P[_0-9a-z]+)/(?P[_0-9a-z]+)/$', + 'soc.views.person.profile.edit'), )