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

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

Issue 2801463002: Milo: Use custom config caching layer (Closed)
Patch Set: Review: Remove double logging Created 3 years, 8 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/appengine/frontend/frontpage.go ('k') | milo/appengine/frontend/templates/pages/frontpage.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/frontend/templates/pages/configs.html
diff --git a/milo/appengine/frontend/templates/pages/configs.html b/milo/appengine/frontend/templates/pages/configs.html
index f11c15cb81589419ae3c9f00613a2bdf0cb79a9f..237ec9c74288b2283760a8f0a5e7577e4a1ee09f 100644
--- a/milo/appengine/frontend/templates/pages/configs.html
+++ b/milo/appengine/frontend/templates/pages/configs.html
@@ -33,5 +33,18 @@
{{ 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/appengine/frontend/frontpage.go ('k') | milo/appengine/frontend/templates/pages/frontpage.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698