view bio/urls.py @ 711:c09ed90c891b

Fix regression in messages that efb525863a75 broke. Changeset efb525863a75 broke the feature that auto-populated the To: field in a private message when you clicked on a user's PM button.
author Brian Neal <bgneal@gmail.com>
date Tue, 17 Sep 2013 18:17:28 -0500
parents ee87ea74d46b
children 5ba2508939f7
line wrap: on
line source
"""urls for the bio application"""
from django.conf.urls import patterns, url

urlpatterns = patterns('bio.views',
    url(r'^members/(?P<type>user|date)/$',
        'member_list',
        name='bio-member_list'),
    url(r'^members/search/$', 'member_search', name='bio-member_search'),
    url(r'^me/$', 'my_profile', name='bio-me'),
    url(r'^view/(?P<username>[\w.@+-]{1,30})/$', 'view_profile', name='bio-view_profile'),
    url(r'^edit/$', 'edit_profile', name='bio-edit_profile'),
    url(r'^edit/elsewhere/$', 'edit_elsewhere', name='bio-edit_elsewhere'),
    url(r'^avatar/$', 'change_avatar', name='bio-change_avatar'),
    url(r'^flag/(\d+)/$', 'flag_profile', name='bio-flag_profile'),
)