| Index: milo/frontend/templates/pages/configs.html
|
| diff --git a/milo/frontend/templates/pages/configs.html b/milo/frontend/templates/pages/configs.html
|
| deleted file mode 100644
|
| index 237ec9c74288b2283760a8f0a5e7577e4a1ee09f..0000000000000000000000000000000000000000
|
| --- a/milo/frontend/templates/pages/configs.html
|
| +++ /dev/null
|
| @@ -1,50 +0,0 @@
|
| -{{define "title"}}Configs{{end}}
|
| -
|
| -{{ define "head" }}{{ end }}
|
| -
|
| -{{define "body"}}
|
| -<div class="header">
|
| - <a href="{{ .Navi.SiteTitle.URL }}">{{ .Navi.SiteTitle.Label }}</a>
|
| -</div>
|
| -<div class="content">
|
| - <h1>All Projects</h1>
|
| - <h2>These are all of the projects and their settings as defined by luci config</h2>
|
| - {{ range .Projects }}
|
| - <h3> {{ .ID }} </h3>
|
| - <h4> Readers </h4>
|
| - <ul>
|
| - {{ range .Readers }}
|
| - <li> {{ . }} </li>
|
| - {{ end }}
|
| - </ul>
|
| - {{ range .Consoles }}
|
| - <h4> Console: {{ .Name }} </h4>
|
| - <p> <b>ID</b>: {{ .ID }} </p>
|
| - <p> <b>Repo</b>: {{ .RepoURL }} </p>
|
| - <p> <b>Branch</b>: {{ .Branch}} </p>
|
| - <ul>
|
| - {{ range .Builders }}
|
| - <li> <b>{{ .Module }}/{{ .Name }}</b>: {{ .Category }} - {{ .ShortName }} </li>
|
| - {{ end }}
|
| - </ul>
|
| - {{ else }}
|
| - <h4> No consoles defined </h4>
|
| - {{ end }}
|
| - {{ else }}
|
| - <h3> No projects defined </h3>
|
| - {{ end }}
|
| -
|
| - <h1>Service Configs</h1>
|
| - <h2>These are settings tied to this instance of Milo</h2>
|
| - {{ if not .ServiceConfig }}
|
| - <h3>No Settings found...</h3>
|
| - {{ else }}
|
| - <ul>
|
| - <li> Revision: {{ .ServiceConfig.Revision }} </li>
|
| - <li> Last Updated: {{ .ServiceConfig.LastUpdated | localTime "N/A" }} </li>
|
| - </ul>
|
| - Content:
|
| - <pre>{{ .ServiceConfig.Text }}</pre>
|
| - {{ end }}
|
| -</div>
|
| -{{end}}
|
|
|