go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/scheduler/appengine/frontend/templates/pages/error.html (about) 1 {{define "title"}} 2 LUCI Scheduler{{range $crumb := .Breadcrumps}} :: {{$crumb}}{{end}} 3 {{end}} 4 5 {{define "head"}} 6 {{end}} 7 8 {{define "content"}} 9 10 <ol class="breadcrumb"> 11 <li class="breadcrumb-item"> 12 <a href="/">All projects</a> 13 </li> 14 {{range $index, $title := .Breadcrumps }} 15 {{if eq $index $.LastCrumbIdx}} 16 <li class="breadcrumb-item active">{{$title}}</li> 17 {{else}} 18 <li class="breadcrumb-item"> 19 <a href="/jobs{{range $i := Count $index}}/{{index $.Breadcrumps $i}}{{end}}"> 20 {{$title}} 21 </a> 22 </li> 23 {{end}} 24 {{end}} 25 </ol> 26 27 <div class="row"> 28 <div class="col-sm-12"> 29 <b>{{.Message}} 30 {{if and .ReloginMayHelp .IsAnonymous}} 31 You may need to <a href="{{.LoginURL}}">login</a> first. 32 {{end}} 33 </b> 34 </div> 35 </div> 36 37 {{end}}