Compare test suites results feature PRODX-36767

Update Django to 4.2 version

Change-Id: Ieed17cfac12518262503043ccee03473a3023221
diff --git a/testrail_bot/control/urls.py b/testrail_bot/control/urls.py
index fd8bebc..b5292f3 100644
--- a/testrail_bot/control/urls.py
+++ b/testrail_bot/control/urls.py
@@ -12,6 +12,15 @@
     path("reports/<int:report_id>/", views.single_report, name="single_report"),
     path('index/', views.index, name='index'),
     path("help/", views.show_help, name="help"),
-    path("update_jenkins_plot", views.update_jenkins_plot, name="update_jenkins"),
-    path("jenkins_plot", views.jenkins_plot, name="jenkins_plot")
+    path("update_jenkins_plot",
+         views.update_jenkins_plot,
+         name="update_jenkins"),
+    path("jenkins_plot", views.jenkins_plot, name="jenkins_plot"),
+    path("compare_suites/new/", views.compare_suites, name="compare_suites"),
+    path("compare_suites/",
+         views.list_of_comparing_reports,
+         name="list_of_comparing_reports"),
+    path("compare_suites/submit/", views.submit_suites, name="submit_suites"),
+    path("compare_suites/<int:report_id>/", views.report_comparing_suites,
+         name="report_comparing_suites"),
 ]