2017-12-31 00:47:52 +00:00
|
|
|
<div class="ui top attached pull tabular stackable menu">
|
2015-12-07 22:30:52 +00:00
|
|
|
<a class="item {{if .PageIsPullConversation}}active{{end}}" href="{{.RepoLink}}/pulls/{{.Issue.Index}}">
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-comment-discussion"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{$.i18n.Tr "repo.pulls.tab_conversation"}}
|
2016-02-28 23:27:41 +00:00
|
|
|
<span class="ui {{if not .Issue.NumComments}}gray{{else}}blue{{end}} small label">{{.Issue.NumComments}}</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</a>
|
|
|
|
<a class="item {{if .PageIsPullCommits}}active{{end}}" {{if .NumCommits}}href="{{.RepoLink}}/pulls/{{.Issue.Index}}/commits"{{end}}>
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-git-commit"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{$.i18n.Tr "repo.pulls.tab_commits"}}
|
2016-02-28 23:27:41 +00:00
|
|
|
<span class="ui {{if not .NumCommits}}gray{{else}}blue{{end}} small label">{{if .NumCommits}}{{.NumCommits}}{{else}}N/A{{end}}</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</a>
|
|
|
|
<a class="item {{if .PageIsPullFiles}}active{{end}}" {{if .NumFiles}}href="{{.RepoLink}}/pulls/{{.Issue.Index}}/files"{{end}}>
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-diff"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{$.i18n.Tr "repo.pulls.tab_files"}}
|
2016-02-28 23:27:41 +00:00
|
|
|
<span class="ui {{if not .NumFiles}}gray{{else}}blue{{end}} small label">{{if .NumFiles}}{{.NumFiles}}{{else}}N/A{{end}}</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</a>
|
|
|
|
</div>
|