You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
322 B
9 lines
322 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import patterns, url
|
|
from admin import UserListView, EditUser
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^change/(?P<url>.*)/$', 'accounts.admin.user_change'),
|
|
url(r'^all/$', UserListView.as_view()),
|
|
url(r'^reset_password_email/$', 'accounts.admin.reset_password_email'),
|
|
) |