Jan Dittberner
085b126416
- update all dependencies - fix deprecation warnings and errors for Django 1.9 compatibility
15 lines
337 B
Python
15 lines
337 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
|
|
from .views import (
|
|
IndexView,
|
|
UserDashboardView,
|
|
)
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^$', IndexView.as_view(), name='dashboard'),
|
|
url(r'^user/(?P<slug>[\w0-9@.+-_]+)/$',
|
|
UserDashboardView.as_view(), name='customer_dashboard'),
|
|
]
|