go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/server/portal/internal/assets/pages/index.html (about) 1 {{define "content"}} 2 <div class="row"> 3 <div class="col-md-offset-2 col-md-8"> 4 5 <h2>All admin pages</h2> 6 <hr> 7 8 <ul> 9 {{range .Entries}} 10 <li><a href="/admin/portal/{{.ID}}">{{.Title}}</a></li> 11 {{end}} 12 </ul> 13 14 {{if .WaitingForConsistency}} 15 <hr> 16 <small> 17 {{.TimeToConsistency}} until last settings change is propagated everywhere. 18 </small> 19 {{end}} 20 21 </div> 22 </div> 23 {{end}}