feat: backoffice setup
CI / ci (ubuntu-24.04, 3.13) (push) Has been cancelled

This commit is contained in:
2026-07-23 13:31:53 +02:00
parent 87405f31fa
commit 2a9407e676
45 changed files with 2148 additions and 1 deletions
+16
View File
@@ -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')),
]