Add Python APIs for account/profile information to user_api Updating profile page to have social linking Authors: Renzo Lucioni, Alasdair Swan, Stephen Sanchez, Will Daly
8 lines
216 B
Python
8 lines
216 B
Python
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns(
|
|
'student_profile.views',
|
|
url(r'^$', 'index', name='profile_index'),
|
|
url(r'^name_change$', 'name_change_handler', name='name_change'),
|
|
)
|