[testrail-bot]Add button to delete run

Updated icon for Save button
PRODX-35932


Change-Id: I36fd436979ac99ed09687a8184bc7493917a5fe6
diff --git a/testrail_bot/control/urls.py b/testrail_bot/control/urls.py
index 0807794..fd8bebc 100644
--- a/testrail_bot/control/urls.py
+++ b/testrail_bot/control/urls.py
@@ -7,6 +7,7 @@
     path("runs/", views.create_run, name="create_run"),
     path("runs/<int:run_id>/", views.single_run, name="single_run"),
     path("runs/<int:run_id>/submit/", views.submit_run, name="submit_run"),
+    path("runs/<int:run_id>/delete/", views.delete_run, name="delete_run"),
     path("reports/", views.list_reports, name="list_reports"),
     path("reports/<int:report_id>/", views.single_report, name="single_report"),
     path('index/', views.index, name='index'),