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

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

Issue 2949783002: [milo] appengine/* -> * (Closed)
Patch Set: rebase 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
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/appengine/frontend/templates/pages/configs.html ('k') | milo/appengine/frontend/templates/pages/error.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698