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

Side by Side Diff: scheduler/appengine/frontend/templates/pages/run_job_result.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 :: {{.ProjectID}} :: {{.JobID}}{{end}} 1 {{define "title"}}LUCI Scheduler :: {{.ProjectID}} :: {{.JobName}}{{end}}
2 2
3 {{define "head"}} 3 {{define "head"}}
4 {{end}} 4 {{end}}
5 5
6 {{define "content"}} 6 {{define "content"}}
7 7
8 <ol class="breadcrumb"> 8 <ol class="breadcrumb">
9 <li><a href="/">All projects</a></li> 9 <li><a href="/">All projects</a></li>
10 <li><a href="/jobs/{{.ProjectID}}">{{.ProjectID}}</a></li> 10 <li><a href="/jobs/{{.ProjectID}}">{{.ProjectID}}</a></li>
11 <li class="active"><a href="/jobs/{{.ProjectID}}/{{.JobID}}">{{.JobID}}</a></l i> 11 <li class="active"><a href="/jobs/{{.ProjectID}}/{{.JobName}}">{{.JobName}}</a ></li>
12 </ol> 12 </ol>
13 13
14 <div class="container"> 14 <div class="container">
15 <h3>{{if .Error}}Error{{else}}Success{{end}}</h3> 15 <h3>{{if .Error}}Error{{else}}Success{{end}}</h3>
16 <hr> 16 <hr>
17 {{if .Error}} 17 {{if .Error}}
18 <p>Failed to start the invocation - {{.Error}}.</p> 18 <p>Failed to start the invocation - {{.Error}}.</p>
19 {{else}} 19 {{else}}
20 <p>The invocation was successfully queued.</p> 20 <p>The invocation was successfully queued.</p>
21 <p>It will appear in the invocations list in a few moments.</p> 21 <p>It will appear in the invocations list in a few moments.</p>
22 {{end}} 22 {{end}}
23 </div> 23 </div>
24 24
25 {{end}} 25 {{end}}
OLDNEW
« no previous file with comments | « scheduler/appengine/frontend/templates/pages/job.html ('k') | scheduler/appengine/ui/presentation.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698