| OLD | NEW |
| 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}} |
| OLD | NEW |