| 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}}
|
|
|