mirror of https://github.com/status-im/consul.git
25 lines
594 B
Handlebars
25 lines
594 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
{{#if (eq @type 'create')}}
|
|
{{#if (eq @status 'success') }}
|
|
Your intention has been added.
|
|
{{else}}
|
|
There was an error adding your intention.
|
|
{{/if}}
|
|
{{else if (eq @type 'update') }}
|
|
{{#if (eq @status 'success') }}
|
|
Your intention has been saved.
|
|
{{else}}
|
|
There was an error saving your intention.
|
|
{{/if}}
|
|
{{/if}}
|
|
{{#let @error.errors.firstObject as |error|}}
|
|
{{#if error.detail }}
|
|
<br />{{concat '(' (if error.status (concat error.status ': ')) error.detail ')'}}
|
|
{{/if}}
|
|
{{/let}}
|
|
|