{{ 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. Hourly pool Each deposit joins the active round. When the draw deadline passes, the full pool is credited to one randomly selected ticket holder. Each deposit creates one ticket. More deposits mean more chances in the same hourly round. No active round yet. The first deposit starts the next one-hour lottery window.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 }}
Deposit into the pool and wait for the next draw.
Join the round
Active round
{{ if $page.Lottery.ActiveRound }}
{{ else }}
Recent winners
{{ range $page.Lottery.RecentPayouts }}
When Winner Pool Tickets
{{ else }}
{{ dt .CompletedAt }}
{{ .WinnerUsername }}
{{ money .PoolMinor }}
{{ .TicketCount }}
{{ end }}
No lottery winners yet. 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. | ||||||