repos / git-pr

a self-hosted git collaboration server
git clone https://github.com/picosh/git-pr.git

git-pr / tmpl / components
Eric Bower  ·  2025-12-28

pr-tabs.html

1{{define "pr-tabs"}}
2<div class="pr-tabs">
3  <a href="/prs/{{.Pr.ID}}" class="pr-tab{{if eq .Tab "timeline"}} pr-tab-active{{end}}">Timeline</a>
4  <a href="/ps/{{.Patchset.ID}}" class="pr-tab{{if eq .Tab "patchsets"}} pr-tab-active{{end}}">Patchsets</a>
5</div>
6{{end}}