From 30bb6c3182f08cd01659aef17140bce2af2d9d1b Mon Sep 17 00:00:00 2001 From: Marwan Alwali Date: Thu, 15 May 2025 19:38:58 +0300 Subject: [PATCH] update --- car_inventory/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/car_inventory/urls.py b/car_inventory/urls.py index 22598cfe..cb957b7a 100644 --- a/car_inventory/urls.py +++ b/car_inventory/urls.py @@ -5,7 +5,7 @@ from django.conf import settings from django.conf.urls.i18n import i18n_patterns from inventory import views # import debug_toolbar -# from schema_graph.views import Schema +from schema_graph.views import Schema # from two_factor.urls import urlpatterns as tf_urls urlpatterns = [ @@ -27,7 +27,7 @@ urlpatterns += i18n_patterns( # path("haikalbot/", include("haikalbot.urls")), path('appointment/', include('appointment.urls')), path('plans/', include('plans.urls')), - # path("schema/", Schema.as_view()), + path("schema/", Schema.as_view()), # path('', include(tf_urls)), )