vault/ui/lib/replication/addon/templates/index.hbs
Matthew Irish 6d273dc368
UI ember engines (#6718)
Adds replication engine and core in-repo addon
2019-05-13 14:05:25 -05:00

20 lines
467 B
Handlebars

{{#if (eq model.mode 'unsupported')}}
<PageHeader as |p|>
<p.levelLeft>
<h1 class="title is-3 has-text-grey">
Replication unsupported
</h1>
</p.levelLeft>
</PageHeader>
<EmptyState
@title="The current cluster configuration does not support replication"
/>
{{else}}
<ReplicationSummary
@cluster={{model}}
@showModeSummary={{true}}
@onEnable={{action "onEnable"}}
@onDisable={{action "onDisable"}}
/>
{{/if}}