summaryrefslogtreecommitdiffstats
path: root/templates/repo/sub_menu.tmpl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
committerDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
commitdd136858f1ea40ad3c94191d647487fa4f31926c (patch)
tree58fec94a7b2a12510c9664b21793f1ed560c6518 /templates/repo/sub_menu.tmpl
parentInitial commit. (diff)
downloadforgejo-upstream.tar.xz
forgejo-upstream.zip
Adding upstream version 9.0.0.upstream/9.0.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'templates/repo/sub_menu.tmpl')
-rw-r--r--templates/repo/sub_menu.tmpl45
1 files changed, 45 insertions, 0 deletions
diff --git a/templates/repo/sub_menu.tmpl b/templates/repo/sub_menu.tmpl
new file mode 100644
index 0000000..ddf01b3
--- /dev/null
+++ b/templates/repo/sub_menu.tmpl
@@ -0,0 +1,45 @@
+{{if and (not .HideRepoInfo) (not .IsBlame)}}
+<div class="ui segments repository-summary tw-mt-1 tw-mb-0">
+ <div class="ui segment sub-menu repository-menu">
+ {{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}}
+ <a class="item muted {{if .PageIsCommits}}active{{end}}" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">
+ {{svg "octicon-history"}} {{ctx.Locale.TrN .CommitsCount "repo.n_commit_one" "repo.n_commit_few" (printf "<b>%d</b>" .CommitsCount | SafeHTML)}}
+ </a>
+ <a class="item muted {{if .PageIsBranches}}active{{end}}" href="{{.RepoLink}}/branches">
+ {{svg "octicon-git-branch"}} {{ctx.Locale.TrN .BranchesCount "repo.n_branch_one" "repo.n_branch_few" (printf "<b>%d</b>" .BranchesCount | SafeHTML)}}
+ </a>
+ {{if $.Permission.CanRead $.UnitTypeCode}}
+ <a class="item muted {{if .PageIsTagList}}active{{end}}" href="{{.RepoLink}}/tags">
+ {{svg "octicon-tag"}} {{ctx.Locale.TrN .NumTags "repo.n_tag_one" "repo.n_tag_few" (printf "<b>%d</b>" .NumTags | SafeHTML)}}
+ </a>
+ {{end}}
+ <span class="item not-mobile" {{if not (eq .Repository.Size 0)}}data-tooltip-content="{{.Repository.SizeDetailsString ctx.Locale}}"{{end}}>
+ {{$fileSizeFields := ctx.Locale.TrSize .Repository.Size}}
+ {{svg "octicon-database"}} <b>{{$fileSizeFields.PrettyNumber}}</b> {{$fileSizeFields.TranslatedUnit}}
+ </span>
+ {{end}}
+ </div>
+ {{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}}
+ <div class="ui segment sub-menu language-stats-details tw-hidden">
+ {{range .LanguageStats}}
+ <div class="item">
+ <i class="color-icon" style="background-color: {{.Color}}"></i>
+ <span class="tw-font-semibold">
+ {{if eq .Language "other"}}
+ {{ctx.Locale.Tr "repo.language_other"}}
+ {{else}}
+ {{.Language}}
+ {{end}}
+ </span>
+ {{.Percentage}}%
+ </div>
+ {{end}}
+ </div>
+ <a class="ui segment language-stats show-panel toggle" data-panel=".repository-summary > .sub-menu">
+ {{range .LanguageStats}}
+ <div class="bar" style="width: {{.Percentage}}%; background-color: {{.Color}}" data-tooltip-placement="top" data-tooltip-content={{.Language}} data-tooltip-follow-cursor="horizontal"></div>
+ {{end}}
+ </a>
+ {{end}}
+</div>
+{{end}}