28 lines
919 B
Handlebars
Raw Normal View History

{{#if this.showDataConstructChangeManagement}}
<ChangeManagement::ChangeLogTable
@changeLogs={{this.changeLogs}}
@showChangeLogDetail={{this.showChangeLogDetail}}
@onSendEmail={{this.onSendEmail}}
@onAddLog={{this.onAddLog}}
@readOnly={{not this.isCurrentUserAnOwner}}
/>
{{#if this.isAddingChangeLog}}
<ChangeManagement::AddChangeLogModal
@onCloseModal={{this.handleClosingOfAddChangeLogModal}}
@onSave={{this.onSave}}
@onSendEmailOnly={{this.onSendEmailOnly}}
@recipients={{this.recipients}}
@ownersCount={{this.owners.length}}
@isSendingEmailOnly={{this.isSendingEmailOnly}}
@currentChangeLog={{this.currentChangeLog}}
/>
{{/if}}
{{#if this.isViewingChangeLog}}
<ChangeManagement::ViewChangeLogModal
@onCloseModal={{this.handleClosingOfViewChangeLogModal}}
@changeLog={{this.currentChangeLog}}
/>
{{/if}}
{{/if}}