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

Side by Side Diff: scheduler/appengine/frontend/templates/pages/invocation.html

Issue 2948103002: scheduler: rename JobID to JobName to avoid overloading JobID meaning. (Closed)
Patch Set: more js lowercase 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
1 {{define "title"}}LUCI Scheduler :: {{.Job.ProjectID}} :: {{.Job.JobID}} :: {{.I nv.InvID}}{{end}} 1 {{define "title"}}LUCI Scheduler :: {{.Job.ProjectID}} :: {{.Job.JobName}} :: {{ .Inv.InvID}}{{end}}
2 2
3 {{define "head"}} 3 {{define "head"}}
4 <style type="text/css"> 4 <style type="text/css">
5 .underline { 5 .underline {
6 text-decoration: underline !important; 6 text-decoration: underline !important;
7 } 7 }
8 </style> 8 </style>
9 {{template "invocation-action-scripts" .}} 9 {{template "invocation-action-scripts" .}}
10 {{end}} 10 {{end}}
11 11
12 {{define "content"}} 12 {{define "content"}}
13 13
14 <ol class="breadcrumb"> 14 <ol class="breadcrumb">
15 <li><a href="/">All projects</a></li> 15 <li><a href="/">All projects</a></li>
16 <li><a href="/jobs/{{.Job.ProjectID}}">{{.Job.ProjectID}}</a></li> 16 <li><a href="/jobs/{{.Job.ProjectID}}">{{.Job.ProjectID}}</a></li>
17 <li>{{template "job-id-ref" .Job}}</li> 17 <li>{{template "job-id-ref" .Job}}</li>
18 <li class="active"><a href="/jobs/{{.Job.ProjectID}}/{{.Job.JobID}}/{{.Inv.Inv ID}}">{{.Inv.InvID}}</a></li> 18 <li class="active"><a href="/jobs/{{.Job.ProjectID}}/{{.Job.JobName}}/{{.Inv.I nvID}}">{{.Inv.InvID}}</a></li>
19 </ol> 19 </ol>
20 20
21 <div class="container"> 21 <div class="container">
22 <div class="row"> 22 <div class="row">
23 <div class="col-sm-3"><b>Status:</b> 23 <div class="col-sm-3"><b>Status:</b>
24 {{if .Inv.ViewURL}} 24 {{if .Inv.ViewURL}}
25 <a href="{{.Inv.ViewURL}}" target="_blank" class="underline label {{.Inv .LabelClass}}">{{.Inv.Status}}</a> 25 <a href="{{.Inv.ViewURL}}" target="_blank" class="underline label {{.Inv .LabelClass}}">{{.Inv.Status}}</a>
26 {{else}} 26 {{else}}
27 <span class="label {{.Inv.LabelClass}}">{{.Inv.Status}}</span> 27 <span class="label {{.Inv.LabelClass}}">{{.Inv.Status}}</span>
28 {{end}} 28 {{end}}
(...skipping 25 matching lines...) Expand all
54 <h4>Debug log (UTC)</h4> 54 <h4>Debug log (UTC)</h4>
55 <div class="row"> 55 <div class="row">
56 <div class="col-sm-12"> 56 <div class="col-sm-12">
57 <pre>{{.Inv.DebugLog}}</pre> 57 <pre>{{.Inv.DebugLog}}</pre>
58 </div> 58 </div>
59 </div> 59 </div>
60 60
61 </div> 61 </div>
62 62
63 {{end}} 63 {{end}}
OLDNEW
« no previous file with comments | « scheduler/appengine/frontend/templates/includes/base.html ('k') | scheduler/appengine/frontend/templates/pages/job.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698