GovOPlaN

govoplan-dashboard (0.1.17)

Published 2026-08-05 20:37:46 +02:00 by govoplan-package-publisher

Installation

pip install --index-url https://git.add-ideas.de/api/packages/GovOPlaN/pypi/simple/ --extra-index-url https://pypi.org/simple govoplan-dashboard

About this package

GovOPlaN configurable dashboard module.

GovOPlaN Dashboard

Repository type: module (platform).

Configurable dashboard module for GovOPlaN.

The module owns the /dashboard route when installed. Core keeps only a minimal fallback home for installations where this module is absent.

Modules contribute widgets through the dashboard.widgets WebUI capability. Personal widget layouts are stored by the backend for each tenant, account, and active View. Configure mode supports adding, removing, ordering, sizing, and widget-specific settings. Existing browser-only layouts are used as a migration fallback until the first server save.

The Dashboard's Active interface modules metric and widget count only tenant-enabled modules whose WebUI is loaded in the current browser session. The Administration module catalogue has a different operator-facing scope: it also includes discovered backend-only and headless module manifests. The two figures therefore need not match.

Widget providers can declare supported sizes and a small configuration schema:

{
  id: "example.summary",
  surfaceId: "example.dashboard.summary",
  title: "Example summary",
  supportedSizes: ["small", "medium", "wide"],
  defaultConfiguration: { limit: 10, showDetails: true },
  configurationFields: [
    { id: "limit", label: "Rows", kind: "number", min: 1, max: 50 },
    { id: "showDetails", label: "Show details", kind: "boolean" }
  ],
  render: ({ configuration }) => <ExampleWidget configuration={configuration} />
}

Every widget needs a matching View surface. The Dashboard catalogue filters contributions through the effective View before rendering them, while saved placements remain intact when a View or module temporarily hides a widget.

Requirements

Requires Python: >=3.12
Details
PyPI
2026-08-05 20:37:46 +02:00
2
GovOPlaN
12 KiB
Assets (1)
Versions (7) View all
0.1.20 2026-08-24
0.1.19 2026-08-23
0.1.18 2026-08-05
0.1.17 2026-08-05
0.1.16 2026-08-05