Begin implementing context modal

This commit is contained in:
2022-08-12 09:08:44 +01:00
parent eeccffccf7
commit e335bdf722
6 changed files with 140 additions and 23 deletions

View File

@@ -52,6 +52,7 @@ from core.views.manage.threshold.threshold import (
# Main tool pages
from core.views.ui.drilldown import ( # DrilldownTableView,; Drilldown,
DrilldownContextModal,
DrilldownTableView,
ThresholdInfoModal,
)
@@ -87,6 +88,7 @@ urlpatterns = [
##
# path("drilldown/", Drilldown.as_view(), name="drilldown"),
path("modal/", ThresholdInfoModal.as_view(), name="modal_drilldown"),
path("context/", DrilldownContextModal.as_view(), name="modal_context"),
##
path("ui/insights/", Insights.as_view(), name="insights"),
path("ui/insights/search/", InsightsSearch.as_view(), name="search_insights"),