Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: milo/appengine/frontend/templates/buildbot/pages/builder.html

Issue 2328733002: Milo: Add ?limit= support to builders (Closed)
Patch Set: Regenerate Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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}}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698