Added Primary Character field

This commit is contained in:
2011-06-10 01:12:02 +01:00
parent 373ebc5b68
commit 4a0f40b0b8
7 changed files with 244 additions and 3 deletions

View File

@@ -17,6 +17,7 @@ urlpatterns = patterns('',
(r'^profile/refresh/(?P<userid>\d+)/', views.refresh_access),
(r'^profile/change/password/$', password_change),
(r'^profile/change/email/$', views.email_change),
(r'^profile/change/primary/$', views.primarychar_change),
(r'^users/(?P<username>.*)/$', views.user_view),
(r'^users/$', views.user_lookup),
)