{{extends "base.html"}}
{{import "breadcrumb.html"}}
{{block head()}}
{{end}}
{{block body()}}
{{ yield breadcrumb() repoPath }}
{{if len(repos)>0 || !isCatalogReady}}
List of Repositories
Repository |
Tags |
{{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)}}
{{ repo }} |
{{ tagCounts[full_repo_path] }} |
{{end}}
{{end}}
{{end}} {* end repos *}
{{if len(tags)>0}}
List of Tags
{{end}} {* end tags *}
{{if eventsAllowed and isset(events) }}
Recent Activity
Action |
Image |
IP Address |
User |
Time |
{{range _, e := events}}
{{ e.Action }} |
{{if hasPrefix(e.Tag,"sha256:") }}
{{ e.Repository }}@{{ e.Tag[:19] }}... |
{{else}}
{{ e.Repository }}:{{ e.Tag }} |
{{end}}
{{ e.IP }} |
{{ e.User }} |
{{ e.Created|pretty_time }} |
{{end}}
{{end}}
{{end}}