{{ define "home" }}
{{ $stats := .Data }}
Fast SSR banking demo Each new user receives a generated CZK account number and a 10 000,00 CZK signup bonus. Admins use a separate login and every privileged action is audited. Every signup gets a new account number and 10 000,00 CZK. Separate authentication from customer accounts.Transfer money by account number with real ledger rules.
Create user account
User login
Admin login
Recent activity
{{ template "transaction_table" $page.Transactions }}
{{ range $page.Entries }}
# User Account Balance
{{ else }}
{{ .Rank }}
{{ .Username }}
{{ .AccountNumber }}
{{ money .BalanceMinor }}
{{ end }}
No users available yet. Send money
Transaction history
{{ template "transaction_table" $page.Transactions }}
Recent transactions
{{ template "transaction_table" $page.Dashboard.RecentTransactions }}
Recent audit activity
{{ range $page.Dashboard.RecentAuditActivity }}
When Admin Action Target
{{ else }}
{{ dt .CreatedAt }} {{ .AdminEmail }} {{ .Action }} {{ .TargetType }} / {{ .TargetID }}
{{ end }}
No audit activity yet.
{{ range $page.Users }}
User Account Status Balance Created
{{ else }}
{{ .Username }}
{{ .AccountNumber }}
{{ .Status }}
{{ money .BalanceMinor }}
{{ dt .CreatedAt }}
{{ end }}
No users found. {{ $page.User.Username }}
Adjust balance
Recent transactions
{{ template "transaction_table" $page.Transactions }}
Audit logs
{{ range .Data }}
When Admin Action Target Metadata
{{ else }}
{{ dt .CreatedAt }}
{{ .AdminEmail }}
{{ .Action }}
{{ .TargetType }} / {{ .TargetID }}
{{ .Metadata }}
{{ end }}
No audit logs yet.
| When | Type | Direction | Sender | Recipient | Amount | Description |
|---|---|---|---|---|---|---|
| {{ dt .CreatedAt }} | {{ .Type }} | {{ .Direction }} | {{ if .SenderAccount }}{{ .SenderAccount }}{{ else }}-{{ end }} | {{ if .RecipientAccount }}{{ .RecipientAccount }}{{ else }}-{{ end }} | {{ money .AmountMinor }} | {{ .Description }} |
| No transactions yet. | ||||||