Implement paginated sortable table for results

This commit is contained in:
2022-08-09 07:20:30 +01:00
parent 62133a8cbb
commit 44f05ad63b
8 changed files with 405 additions and 134 deletions

View File

@@ -51,7 +51,10 @@ from core.views.manage.threshold.threshold import (
)
# Main tool pages
from core.views.ui.drilldown import Drilldown, ThresholdInfoModal # DrilldownTableView,
from core.views.ui.drilldown import ( # DrilldownTableView,; Drilldown,
DrilldownTableView,
ThresholdInfoModal,
)
from core.views.ui.insights import (
Insights,
InsightsChannels,
@@ -62,7 +65,8 @@ from core.views.ui.insights import (
)
urlpatterns = [
path("", Drilldown.as_view(), name="home"),
path("", DrilldownTableView.as_view(), name="home"),
path("search/", DrilldownTableView.as_view(), name="search"),
path("about/", About.as_view(), name="about"),
path("callback", Callback.as_view(), name="callback"),
path("billing/", Billing.as_view(), name="billing"),