open-vault/ui/app/templates/components/clients/error.hbs
2022-03-02 14:29:37 -08:00

25 lines
626 B
Handlebars

<EmptyState
@title={{if (eq @error.httpStatus 403) "You are not authorized" "Error"}}
@subTitle="Error {{@model.httpStatus}}"
@icon="skip"
>
{{#if (eq @error.httpStatus 403)}}
<p>
You must be granted permissions to view this page. Ask your administrator if you think you should have access to the
<code>{{@error.path}}</code>
endpoint.
</p>
{{else}}
<ul>
{{#if @error.message}}
<li>{{@error.message}}</li>
<hr />
{{/if}}
{{#each @error.errors as |error|}}
<li>
{{error}}
</li>
{{/each}}
</ul>
{{/if}}
</EmptyState>