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

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

Issue 2669473002: Milo: Remove swarming tags from build properties (Closed)
Patch Set: Fix gerrit checker Created 3 years, 9 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
1 {{define "title"}} 1 {{define "title"}}
2 {{ with .Build.Summary -}} 2 {{ with .Build.Summary -}}
3 {{ if eq .Status.String "InfraFailure" }} 3 {{ if eq .Status.String "InfraFailure" }}
4 Exception 4 Exception
5 {{ else if eq .Status.String "Failure" }} 5 {{ else if eq .Status.String "Failure" }}
6 Failed 6 Failed
7 {{ else if eq .Status.String "NotRun" }} 7 {{ else if eq .Status.String "NotRun" }}
8 Pending 8 Pending
9 {{ else }} 9 {{ else }}
10 {{ .Status.String }} 10 {{ .Status.String }}
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 <a href="{{ .Build.Summary.Source.URL }}">{{ .Build.Summary.Source.Lab el }}</a> 118 <a href="{{ .Build.Summary.Source.URL }}">{{ .Build.Summary.Source.Lab el }}</a>
119 </li> 119 </li>
120 {{ end }} 120 {{ end }}
121 121
122 {{ if .Build.Summary.Bot }} 122 {{ if .Build.Summary.Bot }}
123 <li> 123 <li>
124 Bot: 124 Bot:
125 <a href="{{ .Build.Summary.Bot.URL }}">{{ .Build.Summary.Bot.Label }}< /a> 125 <a href="{{ .Build.Summary.Bot.URL }}">{{ .Build.Summary.Bot.Label }}< /a>
126 </li> 126 </li>
127 {{ end }} 127 {{ end }}
128
129 {{ if .Build.Summary.Recipe}}
130 <li>
131 Recipe: {{ .Build.Summary.Recipe | linkify }}
132 </li>
133 {{ end }}
128 </ul> 134 </ul>
129 {{ end }} <!-- if --> 135 {{ end }} <!-- if -->
130 136
131 {{ if .Build.SourceStamp }} 137 {{ if .Build.SourceStamp }}
132 {{ if .Build.SourceStamp.Source }} 138 {{ if .Build.SourceStamp.Source }}
133 <h2>Reason:</h2> 139 <h2>Reason:</h2>
134 <p>{{ .Source }}</p> 140 <p>{{ .Source }}</p>
135 {{ end }} 141 {{ end }}
136 {{ end }} 142 {{ end }}
137 143
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 } 271 }
266 }; 272 };
267 273
268 check($("#showHidden").is(":checked")); 274 check($("#showHidden").is(":checked"));
269 $("#showHidden").click(function(e) { 275 $("#showHidden").click(function(e) {
270 check($(this).is(":checked")); 276 check($(this).is(":checked"));
271 }); 277 });
272 }); 278 });
273 </script> 279 </script>
274 {{end}} 280 {{end}}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698