view bio/urls.py @ 1157:e4f2d6a4b401

Rework S3 connection logic for latest versions of Python 2.7. Had to make these changes for Ubuntu 16.04. Seems backward compatible with production.
author Brian Neal <bgneal@gmail.com>
date Thu, 19 Jan 2017 18:35:53 -0600
parents eeaf387803c6
children
line wrap: on
line source
"""urls for the bio application"""
from django.conf.urls import url

import bio.views

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