feat: create page balcao

This commit is contained in:
2024-12-21 11:43:09 -03:00
parent 59e4eb6039
commit 0ef1c0a61b
44 changed files with 657 additions and 1 deletions

View File

@@ -53,6 +53,7 @@ INSTALLED_APPS = [
'categories',
'home',
'payments',
'balcao',
]
MIDDLEWARE = [

View File

@@ -26,6 +26,7 @@ urlpatterns = [
path('clients/', include('clients.urls')),
path('comandas/', include('comandas.urls')),
path('categories/', include('categories.urls')),
path('balcao/', include('balcao.urls')),
]