view gpp/bio/urls.py @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents 74f04122295e
children 7ea842744a57
line wrap: on
line source
"""urls for the bio application"""
from django.conf.urls.defaults import *

urlpatterns = patterns('bio.views',
    url(r'^members/(?P<type>user|date)/page/(?P<page>\d+)/$', 
        'member_list', 
        name='bio-members_full'),
    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'),
)

urlpatterns += patterns('django.views.generic.simple',
    url(r'^members/$', 
        'redirect_to', 
        {'url': '/profile/members/user/page/1/'},
        name='bio-members'),
)


# vim: ts=4 sw=4