{{define "dashboard.html"}}{{template "app" .}}{{end}}
{{define "page-title"}}Dashboard - DAL License Server{{end}}
{{define "page-content"}}
Dashboard
{{if .Stats}}
{{range .Stats.ByProduct}}
{{.ProductName}}
Aktivne: {{.Active}}
Istekle: {{.Expired}}
Grace: {{.InGrace}}
Trial: {{.Trial}}
Aktivacija: {{.ActiveActivations}}
{{end}}
{{end}}
{{if .Expiring}}
Isticu u narednih 7 dana
| Kljuc | Proizvod | Firma | Istice |
{{range .Expiring}}
{{.LicenseKey}} |
{{.ProductName}} |
{{.CustomerName}} |
{{.ExpiresAtFormatted}} |
{{end}}
{{end}}
Poslednja aktivnost
| Vreme | Akcija | Licenca | IP |
{{range .Recent}}
| {{formatDate .CreatedAt}} |
{{.Action}} |
{{if .LicenseKey}}{{.LicenseKey}}{{else}}-{{end}} |
{{.IPAddress}} |
{{else}}
| Nema podataka |
{{end}}
{{end}}