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

Unified Diff: milo/frontend/templates/pages/configs.html

Issue 2953183002: Fix milo deployment (Closed)
Patch Set: License header fix 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « milo/frontend/templates/pages/builder.html ('k') | milo/frontend/templates/pages/console.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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}}
« no previous file with comments | « milo/frontend/templates/pages/builder.html ('k') | milo/frontend/templates/pages/console.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698