{{define "admin_files.html"}}{{template "admin_base.html" .}}{{end}} {{define "title"}}Admin — Files{{end}} {{define "content"}}

Files

{{if .Error}}

{{.Error}}

{{end}} {{if .Success}}

File uploaded.

{{end}}
{{if not .Files}}

no files yet

{{else}} {{$site := .SiteURL}}
{{range .Files}}
{{if .IsImage}} {{.OriginalName}} {{end}}
{{.OriginalName}}
{{.ContentType}} {{.SizeHuman}} {{.CreatedAt}}
{{end}}
{{end}} {{end}}