repos / git-pr

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

git-pr / tmpl
Eric Bower  ·  2024-10-21

pr-list-item.html

 1{{define "pr-list-item"}}
 2<div>
 3  <div style="margin-bottom: 0.3rem;">
 4    {{template "pr-status" .Status}}
 5    <a href="{{.Url}}">{{.Text}}</a>
 6  </div>
 7  <div>
 8    <code>#{{.ID}}</code>
 9    <span>opened on <date>{{.Date}}</date> by </span>
10    {{template "user-pill" .UserData}}
11  </div>
12</div>
13{{end}}