From 70471390cf8b2502d8c9914fef3fc0638b23a4ac Mon Sep 17 00:00:00 2001 From: Max Yakovenko Date: Thu, 19 Jul 2018 09:13:02 +0300 Subject: [PATCH] add jet urls to project urls --- eshop_project/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eshop_project/urls.py b/eshop_project/urls.py index d853fc6..8d20f59 100644 --- a/eshop_project/urls.py +++ b/eshop_project/urls.py @@ -21,6 +21,8 @@ from django.conf.urls.static import static admin.autodiscover() urlpatterns = [ + re_path(r'^jet/', include('jet.urls', 'jet')), + re_path(r'^jet/dashboard/', include('jet.dashboard.urls','jet-dashboard')), re_path(r'^admin/', admin.site.urls), re_path(r'^ckeditor/', include('ckeditor_uploader.urls')),