view gpp/bio/urls.py @ 77:d5eed0a91a05

#24 - Make the default date for a birthday today - 30 years. This allows you to select any month with the picker if the field is initially blank.
author Brian Neal <bgneal@gmail.com>
date Fri, 10 Jul 2009 23:56:02 +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