This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
from django.urls import include, path
|
||||
|
||||
from backoffice.views.dashboard import DashboardView
|
||||
|
||||
app_name = 'backoffice'
|
||||
|
||||
urlpatterns = [
|
||||
path('', DashboardView.as_view(), name='dashboard'),
|
||||
path('products/', include('backoffice.urls.products')),
|
||||
path('orders/', include('backoffice.urls.orders')),
|
||||
path('payments/', include('backoffice.urls.payments')),
|
||||
path('customers/', include('backoffice.urls.customers')),
|
||||
path('providers/', include('backoffice.urls.providers')),
|
||||
path('taxes/', include('backoffice.urls.taxes')),
|
||||
path('settings/', include('backoffice.urls.settings')),
|
||||
]
|
||||
Reference in New Issue
Block a user