gva/gnuviechadmin/dashboard/urls.py
Jan Dittberner 085b126416 Update to Django 1.9
- update all dependencies
- fix deprecation warnings and errors for Django 1.9 compatibility
2015-12-19 20:11:23 +01:00

16 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'),
]