Improve and condense related controls

This commit is contained in:
2026-02-15 22:11:17 +00:00
parent ae3365e165
commit 981ee56de7
18 changed files with 1340 additions and 209 deletions

View File

@@ -305,6 +305,16 @@ urlpatterns = [
osint.OSINTSearch.as_view(),
name="osint_search",
),
path(
"osint/workspace/",
osint.OSINTWorkspace.as_view(),
name="osint_workspace",
),
path(
"osint/workspace/widget/tabs/",
osint.OSINTWorkspaceTabsWidget.as_view(),
name="osint_workspace_tabs_widget",
),
path(
"ai/<str:type>/create/",
ais.AICreate.as_view(),