2021-09-11 11:35:15 +00:00
|
|
|
{{ define "content" }}
|
2023-08-07 13:15:45 +00:00
|
|
|
<main role="main" class="container">
|
2021-09-11 11:35:15 +00:00
|
|
|
<h1>{{ .Title }}</h1>
|
2023-08-07 13:15:45 +00:00
|
|
|
<div class="alert alert-danger">
|
|
|
|
<h2 class="alert-heading">{{ if .details.ErrorCode }}
|
|
|
|
<strong>{{ .details.ErrorCode }}</strong> {{ end }}{{ .details.ErrorMessage }}
|
|
|
|
</h2>
|
|
|
|
{{ if .details.ErrorDetails }}
|
|
|
|
{{ range .details.ErrorDetails }}
|
|
|
|
{{ . }}
|
|
|
|
{{ end }}
|
2021-09-11 11:35:15 +00:00
|
|
|
{{ end }}
|
2023-08-07 13:15:45 +00:00
|
|
|
</div>
|
|
|
|
</main>
|
2021-09-11 11:35:15 +00:00
|
|
|
{{ end }}
|