Kaynağa Gözat

add full orders query

Evgeny Polivanov 1 yıl önce
ebeveyn
işleme
8dd949ecdf
3 değiştirilmiş dosya ile 3 ekleme ve 0 silme
  1. 1 0
      .gitignore
  2. 1 0
      core/settings.py
  3. 1 0
      core/urls.py

+ 1 - 0
.gitignore

@@ -4,6 +4,7 @@ venv/
 #module
 tickets/
 metaservicesynced/
+openlocal/
 SharixAdmin/templates/SharixAdmin/
 staticfiles/
 core/config.py

+ 1 - 0
core/settings.py

@@ -28,6 +28,7 @@ INSTALLED_APPS = [
     'SharixAdmin.apps.SharixadminConfig',
     'tickets.apps.ticketsConfig',
     'metaservicesynced.apps.MetaservicesyncedConfig',
+    'openlocal.apps.OpenlocalConfig',
     'django_tables2',
     "django.contrib.sites",
     "django.contrib.flatpages",

+ 1 - 0
core/urls.py

@@ -13,6 +13,7 @@ urlpatterns = (
     path('tickets/', include("tickets.urls"), name='tickets'),
     #metaservice
     path('metaservicesynced/', include("metaservicesynced.urls"), name="metaservicesynced"),
+    path('openlocal/', include("openlocal.urls"), name="openlocal"),
     
 
 ]