app/urls.py
changeset 83 3f4f7c540b75
parent 79 58001ec7720c
child 84 1b31d238ba39
--- a/app/urls.py	Tue Aug 19 22:37:40 2008 +0000
+++ b/app/urls.py	Tue Aug 19 23:13:24 2008 +0000
@@ -24,6 +24,8 @@
 urlpatterns = patterns(
     '',
     (r'^$', 'soc.views.site.home.public'),
+    (r'^user/profile$','soc.views.user.profile'),
+    (r'^user/profile/(?P<linkname>[_0-9a-z]+)$','soc.views.user.profile'),
     (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'}),