You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {{define "settings"}}
- <!doctype html>
- <html lang="en">
- <head>
- <title>{{.Title}}</title>
- {{template "head" .}}
- </head>
- <body>
- {{template "nav" .}}
- {{if .Msg}}<div class="flash flash-ok">{{.Msg}}</div>{{end}}
- {{if .Err}}<div class="flash flash-err">{{.Err}}</div>{{end}}
- <h1>Settings</h1>
- <p>Read-only summary for milestone 4.</p>
- <table>
- <tr><th>QC Base URL</th><td class="mono">{{.QCBaseURL}}</td></tr>
- <tr><th>Bearer token configured</th><td>{{if .TokenConfigured}}yes{{else}}no{{end}}</td></tr>
- <tr><th>Poll interval (seconds)</th><td>{{.PollIntervalSeconds}}</td></tr>
- <tr><th>Poll timeout (seconds)</th><td>{{.PollTimeoutSeconds}}</td></tr>
- <tr><th>Poll max concurrent</th><td>{{.PollMaxConcurrent}}</td></tr>
- <tr><th>Language output mode</th><td>{{.LanguageOutputMode}}</td></tr>
- </table>
- </body>
- </html>
- {{end}}
|