- Introduced a new template for listing scenarios associated with a project. - Added metrics for total, active, draft, and archived scenarios. - Implemented quick actions for creating new scenarios and reviewing project overview. - Enhanced navigation with breadcrumbs for better user experience. refactor: update Opex and Profitability templates for consistency - Changed titles and button labels for clarity in Opex and Profitability templates. - Updated form IDs and action URLs for better alignment with new naming conventions. - Improved navigation links to include scenario and project overviews. test: add integration tests for Opex calculations - Created new tests for Opex calculation HTML and JSON flows. - Validated successful calculations and ensured correct data persistence. - Implemented tests for currency mismatch and unsupported frequency scenarios. test: enhance project and scenario route tests - Added tests to verify scenario list rendering and calculator shortcuts. - Ensured scenario detail pages link back to the portfolio correctly. - Validated project detail pages show associated scenarios accurately.
37 lines
978 B
Python
37 lines
978 B
Python
from __future__ import annotations
|
|
|
|
from datetime import datetime
|
|
from typing import List
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class NavigationLinkSchema(BaseModel):
|
|
id: int
|
|
label: str
|
|
href: str
|
|
match_prefix: str | None = Field(default=None)
|
|
icon: str | None = Field(default=None)
|
|
tooltip: str | None = Field(default=None)
|
|
is_external: bool = Field(default=False)
|
|
children: List["NavigationLinkSchema"] = Field(default_factory=list)
|
|
|
|
|
|
class NavigationGroupSchema(BaseModel):
|
|
id: int
|
|
label: str
|
|
icon: str | None = Field(default=None)
|
|
tooltip: str | None = Field(default=None)
|
|
links: List[NavigationLinkSchema] = Field(default_factory=list)
|
|
|
|
|
|
class NavigationSidebarResponse(BaseModel):
|
|
groups: List[NavigationGroupSchema]
|
|
roles: List[str] = Field(default_factory=list)
|
|
generated_at: datetime
|
|
|
|
|
|
NavigationLinkSchema.model_rebuild()
|
|
NavigationGroupSchema.model_rebuild()
|
|
NavigationSidebarResponse.model_rebuild()
|