浏览代码

add full orders query

Evgeny Polivanov 1 年之前
父节点
当前提交
8dd949ecdf
共有 3 个文件被更改,包括 3 次插入0 次删除
  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"),
     
 
 ]