Implement more information displays

This commit is contained in:
2026-02-15 19:27:16 +00:00
parent 4cf75b9923
commit 1ebd565f44
13 changed files with 1421 additions and 271 deletions

View File

@@ -139,6 +139,11 @@ urlpatterns = [
compose.ComposeSummary.as_view(),
name="compose_summary",
),
path(
"compose/quick-insights/",
compose.ComposeQuickInsights.as_view(),
name="compose_quick_insights",
),
path(
"compose/engage/preview/",
compose.ComposeEngagePreview.as_view(),
@@ -175,11 +180,21 @@ urlpatterns = [
workspace.AIWorkspacePersonWidget.as_view(),
name="ai_workspace_person",
),
path(
"ai/workspace/<str:type>/person/<uuid:person_id>/timeline/",
workspace.AIWorkspacePersonTimelineWidget.as_view(),
name="ai_workspace_person_timeline",
),
path(
"ai/workspace/<str:type>/person/<uuid:person_id>/insights/graphs/",
workspace.AIWorkspaceInsightGraphs.as_view(),
name="ai_workspace_insight_graphs",
),
path(
"ai/workspace/<str:type>/person/<uuid:person_id>/information/",
workspace.AIWorkspaceInformation.as_view(),
name="ai_workspace_information",
),
path(
"ai/workspace/<str:type>/person/<uuid:person_id>/insights/help/",
workspace.AIWorkspaceInsightHelp.as_view(),