Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x | <div class="errorpage-content col-lg-6 offset-lg-3">
<h1>{{ 'servererror.page.title' | translate }}</h1>
<div class="error-text">
<div [ishServerHtml]="'servererror.page.text' | translate"></div>
<p class="text-body-secondary" tabindex="0" (click)="expand()" (keydown.enter)="expand()">
@switch (httpError?.status) {
@case (undefined) {
{{ stringError | translate }}
}
@case (0) {
Server timeout
}
@default {
Error code {{ httpError.status }}<br />
{{ type }}
}
}
</p>
@if (expanded) {
<pre>{{ error | json }}</pre>
}
</div>
</div>
|