19 lines
839 B
Handlebars
19 lines
839 B
Handlebars
<button {{action 'show'}} class="btn btn-minier btn-info2" data-rel="tooltip" title="Content Preview">
|
|
<i class="fa fa-search" aria-hidden="true"></i>
|
|
</button>
|
|
|
|
{{#if show}}
|
|
{{#modal-dialog title=model.name no-cancel=true submit=(action 'close') on-close=(action 'close') close-to-parent=false}}
|
|
<div class="widget-main">
|
|
<div class="space-12"></div>
|
|
<p>{{content}}</p>
|
|
<hr />
|
|
{{#with (customer-application-images file-base-path model.id model.images model.imageTitles) as |images|}}
|
|
{{#each images as |image index|}}
|
|
{{image-previews cover-title=true image-height=192 image-style='border-radius: 2%; border: 1px solid #DCDCDC; max-width: 480px;' previews=images index=index}}
|
|
{{/each}}
|
|
{{/with}}
|
|
</div>
|
|
{{/modal-dialog}}
|
|
{{/if}}
|