2017-12-31 00:47:52 +00:00
|
|
|
<div class="ui top attached pull tabular stackable menu">
|
2021-11-16 18:18:25 +00:00
|
|
|
<a class="item {{if .PageIsPullConversation}}active{{end}}" href="{{.Issue.Link}}">
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-comment-discussion"}}
|
2022-06-27 20:58:46 +00:00
|
|
|
{{$.locale.Tr "repo.pulls.tab_conversation"}}
|
2023-04-07 19:12:45 +00:00
|
|
|
<span class="ui small label">{{.Issue.NumComments}}</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</a>
|
2021-11-16 18:18:25 +00:00
|
|
|
<a class="item {{if .PageIsPullCommits}}active{{end}}" {{if .NumCommits}}href="{{.Issue.Link}}/commits"{{end}}>
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-git-commit"}}
|
2022-06-27 20:58:46 +00:00
|
|
|
{{$.locale.Tr "repo.pulls.tab_commits"}}
|
2023-04-07 19:12:45 +00:00
|
|
|
<span class="ui small label">{{if .NumCommits}}{{.NumCommits}}{{else}}N/A{{end}}</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</a>
|
2021-11-16 18:18:25 +00:00
|
|
|
<a class="item {{if .PageIsPullFiles}}active{{end}}" {{if .NumFiles}}href="{{.Issue.Link}}/files"{{end}}>
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-diff"}}
|
2022-06-27 20:58:46 +00:00
|
|
|
{{$.locale.Tr "repo.pulls.tab_files"}}
|
2023-04-07 19:12:45 +00:00
|
|
|
<span class="ui small label">{{if .NumFiles}}{{.NumFiles}}{{else}}N/A{{end}}</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</a>
|
|
|
|
</div>
|