We can create new section (‘Customer Statement’) in Overview page by using childview in extension. Here we display the Print Statement from MyAccount section.
Extension:
_.extend(OverviewHomeView.prototype.childViews, {
'Overview.statement': function () {
return new PrintStatementView({
model: this.model,
application: this.options.application
}
);
},
})
Template:
<div data-view=”Overview.statement” ></div>
