Files
vault/ui/lib/core/addon/components/namespace-reminder.hbs
2024-05-16 16:39:13 +00:00

21 lines
480 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
~}}
{{#if this.showMessage}}
{{#if (has-block)}}
<p class="namespace-reminder" id="namespace-reminder">
{{yield (hash namespace=this.namespace)}}
</p>
{{else}}
<p class="namespace-reminder" id="namespace-reminder">
This
{{@noun}}
will be
{{this.modeVerb}}
in the
<span class="tag">{{this.namespace.path}}/</span>namespace.
</p>
{{/if}}
{{/if}}