From d1b960dc220c6b60eeadd6974c66df213485d02e Mon Sep 17 00:00:00 2001 From: Aida Jafarbigloo Date: Tue, 17 Sep 2024 17:01:47 +0200 Subject: [PATCH] Add information path --- meta_creator/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta_creator/urls.py b/meta_creator/urls.py index 2ae8ba7..384bf5d 100644 --- a/meta_creator/urls.py +++ b/meta_creator/urls.py @@ -12,4 +12,5 @@ urlpatterns = [ path("", views.IndexView.as_view(), name="index"), re_path(r'^getdata/', views.index, name="getdata"), + re_path(r'^information/', views.information, name='information'), ]