{{extends "base.html"}} {{import "breadcrumb.html"}} {{block head()}} {{end}} {{block body()}} {{if len(repos)>0 || !isCatalogReady}}

List of Repositories

{{range _, repo := repos}} {{ full_repo_path := repoPath != "" ? repoPath+"/"+repo : repo }} {{if !isset(tagCounts[full_repo_path]) || (isset(tagCounts[full_repo_path]) && tagCounts[full_repo_path] > 0)}} {{end}} {{end}}
Repository Tags
{{ repo }} {{ tagCounts[full_repo_path] }}
{{end}} {* end repos *} {{if len(tags)>0}}

List of Tags

{{range _, tag := tags}} {{end}}
Tag Name
{{ tag }} {{if deleteAllowed}} Delete {{end}}
{{end}} {* end tags *} {{if eventsAllowed and isset(events) }}

Recent Activity

{{range _, e := events}} {{if hasPrefix(e.Tag,"sha256:") }} {{else}} {{end}} {{end}}
Action Image IP Address User Time
{{ e.Action }}{{ e.Repository }}@{{ e.Tag[:19] }}...{{ e.Repository }}:{{ e.Tag }}{{ e.IP }} {{ e.User }} {{ e.Created|pretty_time }}
{{end}} {{end}}