11 lines
492 B
HTML
11 lines
492 B
HTML
<div class="generic-page">
|
|
<div class="fill-content colomn_mutiple" *ngIf="artists">
|
|
<div class="clear"></div>
|
|
<div class="title" *ngIf="artists.length > 1">Artits:</div>
|
|
<div class="title" *ngIf="artists.length == 1">Artist:</div>
|
|
<div *ngFor="let data of artists" class="item-list" (click)="onSelectAlbum($event, data.id)" (auxclick)="onSelectArtist($event, data.id)">
|
|
<app-element-season [element]="data"></app-element-season>
|
|
</div>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div> |