package master_ui import ( "github.com/dustin/go-humanize" "html/template" "net/url" "strings" ) func printpath(parts ...string) string { concat := strings.Join(parts, "") escaped := url.PathEscape(concat) return strings.ReplaceAll(escaped, "%2F", "/") } var funcMap = template.FuncMap{ "humanizeBytes": humanize.Bytes, "printpath": printpath, } var StatusTpl = template.Must(template.New("status").Funcs(funcMap).Parse(` SeaweedFS Filer
{{ range $entry := .Breadcrumbs }} {{ $entry.Name }} {{ end }}
{{$path := .Path }} {{ range $entry_index, $entry := .Entries }} {{ end }}
{{if $entry.IsDirectory}} {{ $entry.Name }} {{else}} {{ $entry.Name }} {{end}} {{if $entry.IsDirectory}} {{else}} {{ $entry.Mime }}  {{end}} {{if $entry.IsDirectory}} {{else}} {{ $entry.Size | humanizeBytes }}  {{end}} {{ $entry.Timestamp.Format "2006-01-02 15:04" }}
{{if .ShouldDisplayLoadMore}}
`))