Lots of stuff
- Imagestore gallery - remember me fixed - youtube filter - password change option
This commit is contained in:
13
website/urls.py
Normal file
13
website/urls.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django.conf.urls import patterns, url
|
||||
|
||||
from website.views import home_view, login_view, userlistForAutocompletion,logout_view, change_password
|
||||
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'$^', home_view ),
|
||||
url(r'^login/$', login_view),
|
||||
url(r'^login/usernames$', userlistForAutocompletion),
|
||||
url(r'^logout/$', logout_view),
|
||||
url(r'^changePassword/$', change_password),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user