| OLD | NEW |
| 1 {{define "title"}}Builder {{ .Builder.Name }}{{end}} | 1 {{define "title"}}Builder {{ .Builder.Name }}{{end}} |
| 2 | 2 |
| 3 {{define "head"}} | 3 {{define "head"}} |
| 4 <link id="favicon" rel="shortcut icon" | 4 <link id="favicon" rel="shortcut icon" |
| 5 type="image/png" href="/static/common/favicon/milo-32.png"> | 5 type="image/png" href="/static/common/favicon/milo-32.png"> |
| 6 {{end}} | 6 {{end}} |
| 7 | 7 |
| 8 {{define "blamelist"}} | 8 {{define "blamelist"}} |
| 9 {{ if . }} | 9 {{ if . }} |
| 10 {{ $nb := len . }} | 10 {{ $nb := len . }} |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 <a href="{{ pagedURL .Request 50 "" }}">50</a> | 181 <a href="{{ pagedURL .Request 50 "" }}">50</a> |
| 182 <a href="{{ pagedURL .Request 100 "" }}">100</a> | 182 <a href="{{ pagedURL .Request 100 "" }}">100</a> |
| 183 <a href="{{ pagedURL .Request 200 "" }}">200</a> | 183 <a href="{{ pagedURL .Request 200 "" }}">200</a> |
| 184 ) | 184 ) |
| 185 {{ if .Builder.NextCursor }} | 185 {{ if .Builder.NextCursor }} |
| 186 <a href="{{ pagedURL .Request 0 .Builder.NextCursor}}">Next</a> | 186 <a href="{{ pagedURL .Request 0 .Builder.NextCursor}}">Next</a> |
| 187 {{ end }} | 187 {{ end }} |
| 188 </div> | 188 </div> |
| 189 | 189 |
| 190 {{end}} | 190 {{end}} |
| OLD | NEW |