summaryrefslogtreecommitdiffstats
path: root/templates/repo/pulls/tab_menu.tmpl
blob: c81eab0dfed3e2840f701a3772677a0641084d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="ui top attached pull tabular menu">
	<a class="item {{if .PageIsPullConversation}}active{{end}}" href="{{.RepoLink}}/pulls/{{.Issue.Index}}">
		<span class="octicon octicon-comment-discussion"></span>
		{{$.i18n.Tr "repo.pulls.tab_conversation"}}
		<span class="ui {{if not .Issue.NumComments}}gray{{else}}blue{{end}} small label">{{.Issue.NumComments}}</span>
	</a>
	<a class="item {{if .PageIsPullCommits}}active{{end}}" {{if .NumCommits}}href="{{.RepoLink}}/pulls/{{.Issue.Index}}/commits"{{end}}>
		<span class="octicon octicon-git-commit"></span>
		{{$.i18n.Tr "repo.pulls.tab_commits"}}
		<span class="ui {{if not .NumCommits}}gray{{else}}blue{{end}} small label">{{if .NumCommits}}{{.NumCommits}}{{else}}N/A{{end}}</span>
	</a>
	<a class="item {{if .PageIsPullFiles}}active{{end}}" {{if .NumFiles}}href="{{.RepoLink}}/pulls/{{.Issue.Index}}/files"{{end}}>
		<span class="octicon octicon-diff"></span>
		{{$.i18n.Tr "repo.pulls.tab_files"}}
		<span class="ui {{if not .NumFiles}}gray{{else}}blue{{end}} small label">{{if .NumFiles}}{{.NumFiles}}{{else}}N/A{{end}}</span>
	</a>
</div>