mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
10 lines
438 B
HTML
10 lines
438 B
HTML
<div class="menu-container">
|
|
<ul class='mdl-list'>
|
|
<li class="mdl-list__item" (click)="selectReport(report)" *ngFor="let report of reports; let idx = index">
|
|
<span [attr.id]="'report-list-' + idx" class="mdl-list__item-primary-content">
|
|
<i class="material-icons mdl-list__item-icon">assignment</i>
|
|
<span class="text">{{report.name}}</span>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div> |