| OLD | NEW |
| 1 {{define "title"}}Builder {{ .Builder.Name }}{{end}} | 1 {{define "title"}}Builder {{ .Builder.Name }}{{end}} |
| 2 | 2 |
| 3 {{define "head"}}{{end}} | 3 {{define "head"}}{{end}} |
| 4 | 4 |
| 5 {{define "body"}} | 5 {{define "body"}} |
| 6 <h1>Builder {{.Builder.Name}}</h1> | 6 <h1>Builder {{.Builder.Name}}</h1> |
| 7 | 7 |
| 8 {{ if .Builder.CurrentBuilds }} | 8 {{ if .Builder.CurrentBuilds }} |
| 9 <h2>Current Builds ({{len .Builder.CurrentBuilds}}):</h2> | 9 <h2>Current Builds ({{len .Builder.CurrentBuilds}}):</h2> |
| 10 <ul> | 10 <ul> |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 <td class="left"> | 90 <td class="left"> |
| 91 {{ .Text }} | 91 {{ .Text }} |
| 92 </td> | 92 </td> |
| 93 </tr> | 93 </tr> |
| 94 {{ end }} | 94 {{ end }} |
| 95 </table> | 95 </table> |
| 96 {{ else }} | 96 {{ else }} |
| 97 <h2>No Recent Builds</h2> | 97 <h2>No Recent Builds</h2> |
| 98 {{ end }} | 98 {{ end }} |
| 99 | 99 |
| 100 </div> | 100 (Show: |
| 101 <a href="{{.Builder.Name}}">default</a> |
| 102 <a href="{{.Builder.Name}}?limit=25">25</a> |
| 103 <a href="{{.Builder.Name}}?limit=50">50</a> |
| 104 <a href="{{.Builder.Name}}?limit=100">100</a> |
| 105 <a href="{{.Builder.Name}}?limit=200">200</a> |
| 106 ) |
| 101 | 107 |
| 102 {{end}} | 108 {{end}} |
| OLD | NEW |