2022-06-18 06:17:08 +00:00
|
|
|
{{ $buildOpts := (.Context).Value "build-options" }}
|
2022-06-07 06:59:41 +00:00
|
|
|
{{ $status := ((.Context).Value "adapter").Build $buildOpts }}
|
|
|
|
|
|
|
|
{{ template "header" . }}
|
|
|
|
|
|
|
|
{{ if ne ($status).Success true }}
|
2022-06-18 06:17:08 +00:00
|
|
|
|
2022-06-07 06:59:41 +00:00
|
|
|
<h2>Build Error</h2>
|
|
|
|
<span class="adapter-error"><pre>{{($status).Message}}</pre></span>
|
2022-06-18 06:17:08 +00:00
|
|
|
|
2022-06-07 06:59:41 +00:00
|
|
|
{{ else }}
|
2022-06-18 06:17:08 +00:00
|
|
|
|
2022-06-07 06:59:41 +00:00
|
|
|
<h2>Build Successful</h2>
|
|
|
|
<span class="adapter-success"><pre>{{($status).Message}}</pre></span>
|
2022-06-18 06:17:08 +00:00
|
|
|
|
2022-06-07 06:59:41 +00:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ template "footer" . }}
|