summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-07-31 09:12:12 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-08-02 10:54:14 +0200
commitf7521efee66e5297528f52290b670df6c2ddb2aa (patch)
treeaa265d38a7957244f771fc1067e127aca7d3c015 /hyperkitty/urls.py
parent36555737b8773b765cbeb81a2417eb431d2da008 (diff)
downloadhyperkitty-f7521efee66e5297528f52290b670df6c2ddb2aa.tar.gz
hyperkitty-f7521efee66e5297528f52290b670df6c2ddb2aa.tar.xz
hyperkitty-f7521efee66e5297528f52290b670df6c2ddb2aa.zip
Add User profiles
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r--hyperkitty/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py
index 9dfe63c..3cc24e5 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -50,6 +50,8 @@ urlpatterns = patterns('hyperkitty.views',
url(r'^accounts/profile/votes$', 'accounts.votes', name='user_votes'),
url(r'^accounts/register/$', 'accounts.user_registration', {'SSL': True}, name='user_registration'),
+ # Users
+ url(r'^user/(?P<email>[^/@]+@[^/@]+)/$', 'accounts.public_profile', name='public_user_profile'),
# List archives and overview
url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/(?P<year>\d{4})/(?P<month>\d\d?)/(?P<day>\d\d?)/$',