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
+1 -1
View File
@@ -40,7 +40,7 @@ THIRD_PARTY_APPS = [
'gonk',
]
PROJECT_APPS = ['shop', 'users', 'web']
PROJECT_APPS = ['shop', 'users', 'web', 'backoffice']
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + PROJECT_APPS
+1
View File
@@ -17,6 +17,7 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('watchman/', include('watchman.urls')),
path('tpv/', include('shop.urls', namespace='shop')),
path('backoffice/', include('backoffice.urls', namespace='backoffice')),
]