${this.events.map((item, index) => html`
<ntp-calendar-event
class="row"
?double-booked="${this.isDoubleBooked_(index) ? 'double-booked' : ''}"
?expanded="${this.isExpanded_(index)}"
.event="${item}"
.index="${index}"
.moduleName="${this.moduleName}">
</ntp-calendar-event>
${this.isExpanded_(index) && this.hasDoubleBooked_() ? html`
<div class="divider"><hr></hr></div>
` : ''}
`)}
<div id="seeMore" class="row">
<a href="${this.calendarLink}" @click="${this.recordSeeMoreClick_}">
$i18n{modulesCalendarSeeMore}
<div id="hoverContainer"></div>
</a>
</div>