{{define "license-detail.html"}}{{template "app" .}}{{end}}
{{define "page-title"}}Licenca {{.License.LicenseKey}} - DAL License Server{{end}}
{{define "page-content"}}
Informacije
| Proizvod | {{.License.ProductName}} ({{.License.ProductCode}}) |
| Tip | {{.License.LicenseType}} |
| Firma | {{.License.CustomerName}} |
| PIB | {{.License.CustomerPIB}} |
| Email | {{.License.CustomerEmail}} |
| Izdata | {{formatDate .License.IssuedAt}} |
| Istice | {{.License.ExpiresAtFormatted}} |
| Grace period | {{.License.GraceDays}} dana |
| Limiti | {{jsonPretty .License.Limits}} |
| Features | {{jsonPretty .License.Features}} |
{{if .License.Notes}}| Napomena | {{.License.Notes}} |
{{end}}
Akcije
{{if not .License.Revoked}}
{{end}}
Aktivacije
| Hostname | OS | Verzija | IP | Aktivirana | Poslednji put | Status |
{{range .Activations}}
| {{.Hostname}} |
{{.OSInfo}} |
{{.AppVersion}} |
{{.IPAddress}} |
{{formatDate .ActivatedAt}} |
{{formatDate .LastSeenAt}} |
{{if .IsActive}}Aktivna{{else}}Deaktivirana{{end}} |
{{else}}
| Nema aktivacija |
{{end}}
Audit Log
| Vreme | Akcija | IP | Detalji |
{{range .Audit}}
| {{formatDate .CreatedAt}} |
{{.Action}} |
{{.IPAddress}} |
{{jsonPretty .Details}} |
{{else}}
| Nema podataka |
{{end}}
{{end}}