2020-07-09 10:08:47 +01:00
|
|
|
{{#if item.ID}}
|
2020-11-18 11:11:30 +00:00
|
|
|
{{page-title 'Edit Intention'}}
|
2020-01-28 09:25:52 -05:00
|
|
|
{{else}}
|
2020-11-18 11:11:30 +00:00
|
|
|
{{page-title 'New Intention'}}
|
2020-01-28 09:25:52 -05:00
|
|
|
{{/if}}
|
2020-10-01 09:33:22 +01:00
|
|
|
<AppView>
|
2020-02-19 19:26:38 +00:00
|
|
|
<BlockSlot @name="breadcrumbs">
|
2018-05-22 16:03:45 +01:00
|
|
|
<ol>
|
2020-04-16 15:15:45 +01:00
|
|
|
<li><a data-test-back href={{href-to 'dc.intentions'}}>All Intentions</a></li>
|
2018-05-22 16:03:45 +01:00
|
|
|
</ol>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="header">
|
2018-05-22 16:03:45 +01:00
|
|
|
<h1>
|
2020-09-18 11:14:06 +01:00
|
|
|
{{#if item.IsEditable}}
|
|
|
|
{{#if item.ID}}
|
|
|
|
Edit Intention
|
|
|
|
{{else}}
|
|
|
|
New Intention
|
|
|
|
{{/if}}
|
2018-05-22 16:03:45 +01:00
|
|
|
{{else}}
|
2020-09-18 11:14:06 +01:00
|
|
|
View Intention
|
2018-05-22 16:03:45 +01:00
|
|
|
{{/if}}
|
|
|
|
</h1>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="content">
|
2020-10-14 09:03:39 +01:00
|
|
|
<Consul::Intention::Form
|
2020-04-01 09:55:49 +01:00
|
|
|
@item={{item}}
|
2020-07-09 10:08:47 +01:00
|
|
|
@dc={{dc}}
|
|
|
|
@nspace={{nspace}}
|
|
|
|
@onsubmit={{transition-to 'dc.intentions.index' dc}}
|
2020-04-01 09:55:49 +01:00
|
|
|
/>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
</AppView>
|