Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
14 lines
335 B
Python
14 lines
335 B
Python
from __future__ import absolute_import
|
|
|
|
from django.urls import re_path
|
|
|
|
from .views import IndexView, UserDashboardView
|
|
|
|
urlpatterns = [
|
|
re_path(r"^$", IndexView.as_view(), name="dashboard"),
|
|
re_path(
|
|
r"^user/(?P<slug>[\w0-9@.+-_]+)/$",
|
|
UserDashboardView.as_view(),
|
|
name="customer_dashboard",
|
|
),
|
|
]
|