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

Side by Side Diff: milo/frontend/templates/pages/console.html

Issue 2953183002: Fix milo deployment (Closed)
Patch Set: License header fix Created 3 years, 6 months 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
« no previous file with comments | « milo/frontend/templates/pages/configs.html ('k') | milo/frontend/templates/pages/error.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {{define "title"}}Milo{{end}}
2
3 {{define "head"}}
4 <style>
5 th {
6 border: 1px silver;
7 }
8 </style>
9 {{end}}
10
11 {{define "body"}}
12 <h1>{{.Console.Name}}</h1>
13
14 <table>
15 <thead>
16 {{ .Console.BuilderRef | consoleHeader }}
17 </thead>
18 {{ range .Console.Commit }}
19 <tr>
20 <td>
21 {{ .Commit.Revision }}
22 </td>
23 {{ range .Build }}
24 <td {{ if . }}class="status-{{.Status.String}}"{{ end }}>
25 {{ if . }}
26 {{ if .Link }}
27 <a href="{{.Link.URL}}">x</a>
28 {{ end }}
29 {{ end }}
30 </td>
31 {{ end }}
32 </tr>
33 {{ end }}
34 </table>
35
36 {{end}} <!-- Body -->
OLDNEW
« no previous file with comments | « milo/frontend/templates/pages/configs.html ('k') | milo/frontend/templates/pages/error.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698