package templates import "portfolio-tracker/internal/web/templates/components" import "portfolio-tracker/internal/model" templ PortfolioContent(username string) {

Portfolio-Übersicht

Wertpapier Anzahl Kurs Wert +/-
Keine Positionen vorhanden. Fügen Sie Ihre erste Transaktion hinzu.

Zusammenfassung

Gesamtwert
€0,00
Gewinn/Verlust
€0,00
Rendite
0,00%

Letzte Transaktionen

Keine Transaktionen vorhanden
} templ Portfolio(authenticated bool, username string, portfolios []model.Portfolio) { @components.PageLayout(authenticated, username, "Portfolio", PortfolioContent(username), portfolios) }