27 lines
858 B
Handlebars
27 lines
858 B
Handlebars
<div class="alert alert-danger text-muted mt-2" role="alert">
|
|
<p>
|
|
<span class="status status-red">
|
|
<span class="status-dot status-dot-animated"></span> Error
|
|
</span>
|
|
We are sorry, but an error occurred while generating this page.
|
|
You should contact the site's administrator.
|
|
</p>
|
|
<p>
|
|
{{#if query_number}}
|
|
Error in query number <strong>{{query_number}}</strong>:
|
|
{{/if}}
|
|
</p>
|
|
<pre><code>{{description}}</code></pre>
|
|
{{#if backtrace}}
|
|
<details open class="fs-5">
|
|
<summary>Backtrace</summary>
|
|
{{~#each backtrace~}}
|
|
<pre class="fs-5 mt-1 p-1 my-1"><code>{{this}}</code></pre>
|
|
{{~/each~}}
|
|
</details>
|
|
{{/if}}
|
|
{{#if note}}
|
|
<p class="fs-5 mt-1 p-1 my-1">{{note}}</p>
|
|
{{/if}}
|
|
</div>
|