summaryrefslogtreecommitdiffstats
path: root/templates/repo/pulls/tab_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/pulls/tab_menu.tmpl
parentInitial commit. (diff)
downloadforgejo-upstream/9.0.0.tar.xz
forgejo-upstream/9.0.0.zip
Adding upstream version 9.0.0.upstream/9.0.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'templates/repo/pulls/tab_menu.tmpl')
-rw-r--r--templates/repo/pulls/tab_menu.tmpl28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/repo/pulls/tab_menu.tmpl b/templates/repo/pulls/tab_menu.tmpl
new file mode 100644
index 0000000..d5a8d6e
--- /dev/null
+++ b/templates/repo/pulls/tab_menu.tmpl
@@ -0,0 +1,28 @@
+<div class="ui pull tabs container">
+ <div class="ui top attached pull tabular menu">
+ <a class="item {{if .PageIsPullConversation}}active{{end}}" href="{{.Issue.Link}}">
+ {{svg "octicon-comment-discussion"}}
+ {{ctx.Locale.Tr "repo.pulls.tab_conversation"}}
+ <span class="ui small label">{{.Issue.NumComments}}</span>
+ </a>
+ <a class="item {{if .PageIsPullCommits}}active{{end}}" {{if .NumCommits}}href="{{.Issue.Link}}/commits"{{end}}>
+ {{svg "octicon-git-commit"}}
+ {{ctx.Locale.Tr "repo.pulls.tab_commits"}}
+ <span class="ui small label">{{if .NumCommits}}{{.NumCommits}}{{else}}-{{end}}</span>
+ </a>
+ <a class="item {{if .PageIsPullFiles}}active{{end}}" href="{{.Issue.Link}}/files">
+ {{svg "octicon-diff"}}
+ {{ctx.Locale.Tr "repo.pulls.tab_files"}}
+ <span class="ui small label">{{if .NumFiles}}{{.NumFiles}}{{else}}-{{end}}</span>
+ </a>
+ {{if or .Diff.TotalAddition .Diff.TotalDeletion}}
+ <span class="tw-ml-auto tw-pl-3 tw-whitespace-nowrap tw-pr-0 tw-font-bold tw-flex tw-items-center tw-gap-2">
+ <span><span class="text green">{{if .Diff.TotalAddition}}+{{.Diff.TotalAddition}}{{end}}</span> <span class="text red">{{if .Diff.TotalDeletion}}-{{.Diff.TotalDeletion}}{{end}}</span></span>
+ <span class="diff-stats-bar">
+ <div class="diff-stats-add-bar" style="width: {{Eval 100 "*" .Diff.TotalAddition "/" "(" .Diff.TotalAddition "+" .Diff.TotalDeletion "+" 0.0 ")"}}%"></div>
+ </span>
+ </span>
+ {{end}}
+ </div>
+ <div class="ui tabs divider"></div>
+</div>