2020-01-28 14:25:52 +00:00
|
|
|
{{#if create }}
|
|
|
|
{{title 'New Namespace'}}
|
|
|
|
{{else}}
|
|
|
|
{{title 'Edit Namespace'}}
|
|
|
|
{{/if}}
|
2020-02-19 19:26:38 +00:00
|
|
|
<AppView @class="nspace edit" @loading={{isLoading}}>
|
2020-05-19 16:18:04 +00:00
|
|
|
<BlockSlot @name="notification" as |status type item error|>
|
2019-12-17 18:47:37 +00:00
|
|
|
{{partial 'dc/nspaces/notifications'}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="breadcrumbs">
|
2019-12-17 18:47:37 +00:00
|
|
|
<ol>
|
|
|
|
<li><a data-test-back href={{href-to 'dc.nspaces'}}>All Namespaces</a></li>
|
|
|
|
</ol>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="header">
|
2019-12-17 18:47:37 +00:00
|
|
|
<h1>
|
|
|
|
{{#if create }}
|
|
|
|
New Namespace
|
|
|
|
{{else}}
|
|
|
|
Edit {{item.Name}}
|
|
|
|
{{/if}}
|
|
|
|
</h1>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="actions">
|
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="content">
|
2019-12-17 18:47:37 +00:00
|
|
|
{{ partial 'dc/nspaces/form'}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
</AppView>
|