open-nomad/ui/app/templates/application.hbs

30 lines
1.2 KiB
Handlebars

{{partial "svg-patterns"}}
{{#unless error}}
{{outlet}}
{{else}}
<div class="error-container">
<div class="error-message">
{{#if is500}}
<h1 class="title is-spaced">Server Error</h1>
<p class="subtitle">A server error prevented data from being sent to the client.</p>
{{else if is404}}
<h1 class="title is-spaced">Not Found</h1>
<p class="subtitle">What you're looking for couldn't be found. It either doesn't exist or you are not authorized to see it.</p>
{{else if is403}}
<h1 class="title is-spaced">Not Authorized</h1>
{{#if token.secret}}
<p class="subtitle">Your {{#link-to "settings.tokens"}}ACL token{{/link-to}} does not provide the required permissions. Contact your administrator if this is an error.</p>
{{else}}
<p class="subtitle">Provide an {{#link-to "settings.tokens"}}ACL token{{/link-to}} with requisite permissions to view this.</p>
{{/if}}
{{else}}
<h1 class="title is-spaced">Error</h1>
<p class="subtitle">Something went wrong.</p>
{{/if}}
{{#if (eq config.environment "development")}}
<pre class="error-stack-trace"><code>{{errorStr}}</code></pre>
{{/if}}
</div>
</div>
{{/unless}}