| Index: appengine/cmd/milo/frontend/templates/buildbot/pages/console.html
|
| diff --git a/appengine/cmd/milo/frontend/templates/buildbot/pages/console.html b/appengine/cmd/milo/frontend/templates/buildbot/pages/console.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3d64e0f42360deb38cbe9624390d8e3f7a954ee1
|
| --- /dev/null
|
| +++ b/appengine/cmd/milo/frontend/templates/buildbot/pages/console.html
|
| @@ -0,0 +1,36 @@
|
| +{{define "title"}}Milo{{end}}
|
| +
|
| +{{define "head"}}
|
| +<style>
|
| +th {
|
| + border: 1px silver;
|
| +}
|
| +</style>
|
| +{{end}}
|
| +
|
| +{{define "body"}}
|
| +<h1>{{.Console.Name}}</h1>
|
| +
|
| +<table>
|
| + <thead>
|
| + {{ .Console.BuilderRef | consoleHeader }}
|
| + </thead>
|
| +{{ range .Console.Commit }}
|
| + <tr>
|
| + <td>
|
| + {{ .Commit.Revision }}
|
| + </td>
|
| + {{ range .Build }}
|
| + <td {{ if . }}class="status-{{.Status.String}}"{{ end }}>
|
| + {{ if . }}
|
| + {{ if .Link }}
|
| + <a href="{{.Link.URL}}">x</a>
|
| + {{ end }}
|
| + {{ end }}
|
| + </td>
|
| + {{ end }}
|
| + </tr>
|
| +{{ end }}
|
| +</table>
|
| +
|
| +{{end}} <!-- Body -->
|
|
|