489b60105f
* Add before and after skip links portals * Move EmptyState and ErrorState to use a @login action/function * Move page title setting to the Route component * Add Routes and Outlets everywhere, and use those to access login modal * Add some aria-labels to the modals * Docs * Remove the label/input now we no longer need it, fixup pageobject * Add basic modal docs * Switch out old toggle names for ids * Wrap nspace Route template in a Route component * type > class
33 lines
800 B
Handlebars
33 lines
800 B
Handlebars
<Route
|
|
@name={{routeName}}
|
|
@title={{if item.ID 'Edit Intention' 'New Intention'}}
|
|
as |route|>
|
|
<AppView>
|
|
<BlockSlot @name="breadcrumbs">
|
|
<ol>
|
|
<li><a data-test-back href={{href-to 'dc.intentions'}}>All Intentions</a></li>
|
|
</ol>
|
|
</BlockSlot>
|
|
<BlockSlot @name="header">
|
|
<h1>
|
|
{{#if item.IsEditable}}
|
|
{{#if item.ID}}
|
|
Edit Intention
|
|
{{else}}
|
|
New Intention
|
|
{{/if}}
|
|
{{else}}
|
|
View Intention
|
|
{{/if}}
|
|
</h1>
|
|
</BlockSlot>
|
|
<BlockSlot @name="content">
|
|
<Consul::Intention::Form
|
|
@item={{item}}
|
|
@dc={{dc}}
|
|
@nspace={{nspace}}
|
|
@onsubmit={{transition-to 'dc.intentions.index' dc}}
|
|
/>
|
|
</BlockSlot>
|
|
</AppView>
|
|
</Route> |