1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/accounts/urls.py

13 lines
479 B
Python
Raw Normal View History

2015-04-02 06:37:46 +00:00
from django.conf.urls import url
from . import views
2015-04-06 07:51:50 +00:00
urlpatterns = [
url(r'^login/$', 'django.contrib.auth.views.login',
{'template_name': 'login.html'}, name='login'),
url(r'^logout/$', 'django.contrib.auth.views.logout',
{'template_name': 'logout.html'}, name='logout'),
2015-04-02 06:37:46 +00:00
url(r'^profile/$', views.profile, name='profile'),
url(r'^$', views.accounts, name='accounts'),
2015-04-02 08:48:40 +00:00
url(r'^profile/(?P<user_id>[0-9]+)/$', views.account, name='account'),
2015-04-02 06:37:46 +00:00
]