2018-12-17 18:32:26 +00:00
|
|
|
|
{{layout/logo-heading
|
|
|
|
|
title="Content Blocks"
|
|
|
|
|
desc="Content blocks provide re-usable content that can be inserted into any document"
|
|
|
|
|
icon=constants.Icon.Blocks}}
|
|
|
|
|
|
|
|
|
|
<div class="space-admin">
|
|
|
|
|
<div class="blocks">
|
|
|
|
|
{{#each blocks as |block|}}
|
|
|
|
|
<div class="block">
|
|
|
|
|
<div class="name">{{block.title}}</div>
|
|
|
|
|
<div class="desc">{{block.excerpt}}</div>
|
|
|
|
|
{{#ui/ui-toolbar dark=false light=true raised=true large=false bordered=true}}
|
|
|
|
|
{{ui/ui-toolbar-icon icon=constants.Icon.Edit color=constants.Color.Gray tooltip="Edit block" onClick=(action "onEdit" block.id)}}
|
|
|
|
|
{{ui/ui-toolbar-icon icon=constants.Icon.Delete color=constants.Color.Red tooltip="Delete block" onClick=(action "onShowDeleteDialog" block.id)}}
|
|
|
|
|
{{/ui/ui-toolbar}}
|
|
|
|
|
</div>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</div>
|
2018-06-05 14:04:14 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{{#if isSpaceAdmin}}
|
2018-12-14 15:47:41 +00:00
|
|
|
|
{{#ui/ui-dialog title="Delete Content Block" confirmCaption="Delete" buttonColor=constants.Color.Red show=showDeleteDialog onAction=(action "onDeleteBlock")}}
|
2018-06-05 14:04:14 +01:00
|
|
|
|
<p>Are you sure you want to delete this re-usable content block?</p>
|
|
|
|
|
{{/ui/ui-dialog}}
|
|
|
|
|
{{/if}}
|