1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-11-05 05:51:29 +03:00
gitea/templates/repo/issue/navbar.tmpl

8 lines
535 B
Cheetah
Raw Normal View History

2015-08-09 17:45:38 +03:00
<div class="ui compact small menu">
2015-11-16 19:11:59 +03:00
{{if not .PageIsList}}
2015-08-09 17:45:38 +03:00
<a class="{{if .PageIsIssueList}}active{{end}} item" href="{{.RepoLink}}/issues">{{.i18n.Tr "repo.issues"}}</a>
2015-09-02 23:18:09 +03:00
<a class="{{if .PageIsPullList}}active{{end}} item" href="{{.RepoLink}}/pulls">{{.i18n.Tr "repo.pulls"}}</a>
2015-11-16 18:14:12 +03:00
{{end}}
2015-08-09 17:45:38 +03:00
<a class="{{if .PageIsLabels}}active{{end}} item" href="{{.RepoLink}}/labels">{{.i18n.Tr "repo.labels"}}</a>
<a class="{{if .PageIsMilestones}}active{{end}} item" href="{{.RepoLink}}/milestones">{{.i18n.Tr "repo.milestones"}}</a>
2015-07-23 23:50:05 +03:00
</div>