Add order app, update base template, add user-agreement page and create orders list page

This commit is contained in:
2022-09-24 00:15:11 +03:00
parent 0a15637d35
commit b8cc005afe
15 changed files with 143 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ INSTALLED_APPS = [
'dev.apps.DevConfig',
'index.apps.IndexConfig',
'account.apps.AccountConfig',
'order.apps.OrderConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',

View File

@@ -23,5 +23,6 @@ urlpatterns = [
path('accounts/', include('django.contrib.auth.urls')),
path('api/', include('api.urls')),
path('dev/', include('dev.urls')),
path('orders/', include('order.urls')),
path('', include('index.urls')),
]