2023-07-14 03:54:20 +02:00
|
|
|
<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"}}
|
2024-05-27 08:45:16 +02:00
|
|
|
{{template "shared/misc/tabtitle" (ctx.Locale.Tr "repo.pulls.tab_conversation")}}
|
2023-07-14 03:54:20 +02:00
|
|
|
<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"}}
|
2024-05-27 08:45:16 +02:00
|
|
|
{{template "shared/misc/tabtitle" (ctx.Locale.Tr "repo.pulls.tab_commits")}}
|
2023-07-14 03:54:20 +02:00
|
|
|
<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"}}
|
2024-05-27 08:45:16 +02:00
|
|
|
{{template "shared/misc/tabtitle" (ctx.Locale.Tr "repo.pulls.tab_files")}}
|
2023-07-14 03:54:20 +02:00
|
|
|
<span class="ui small label">{{if .NumFiles}}{{.NumFiles}}{{else}}-{{end}}</span>
|
|
|
|
|
</a>
|
2025-03-08 17:36:08 +08:00
|
|
|
{{if or .DiffShortStat.TotalAddition .DiffShortStat.TotalDeletion}}
|
2026-01-12 13:29:35 +01:00
|
|
|
{{template "repo/diff/stats" dict "Addition" .DiffShortStat.TotalAddition "Deletion" .DiffShortStat.TotalDeletion "Classes" "tw-ml-auto tw-pl-3 tw-font-semibold"}}
|
2024-04-22 12:48:14 +02:00
|
|
|
{{end}}
|
2023-07-14 03:54:20 +02:00
|
|
|
</div>
|
|
|
|
|
<div class="ui tabs divider"></div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|