mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
06d09d11f1
* Change all instances of yield/block-slots to use attributes over positional arguments * Remove the ability to use yield/block-slots with positional params
25 lines
624 B
Handlebars
25 lines
624 B
Handlebars
{{#app-view class="nspace edit" loading=isLoading}}
|
|
{{#block-slot name='notification' as |status type|}}
|
|
{{partial 'dc/nspaces/notifications'}}
|
|
{{/block-slot}}
|
|
{{#block-slot name='breadcrumbs'}}
|
|
<ol>
|
|
<li><a data-test-back href={{href-to 'dc.nspaces'}}>All Namespaces</a></li>
|
|
</ol>
|
|
{{/block-slot}}
|
|
{{#block-slot name='header'}}
|
|
<h1>
|
|
{{#if create }}
|
|
New Namespace
|
|
{{else}}
|
|
Edit {{item.Name}}
|
|
{{/if}}
|
|
</h1>
|
|
{{/block-slot}}
|
|
{{#block-slot name='actions'}}
|
|
{{/block-slot}}
|
|
{{#block-slot name='content'}}
|
|
{{ partial 'dc/nspaces/form'}}
|
|
{{/block-slot}}
|
|
{{/app-view}}
|