2019-04-23 16:57:35 +02:00
|
|
|
<ng-container *osPerms="'agenda.can_see_list_of_speakers'">
|
|
|
|
<ng-container *ngIf="listOfSpeakers">
|
2019-06-14 11:18:54 +02:00
|
|
|
<a class="anchor-button" *ngIf="!menuItem" [routerLink]="listOfSpeakersUrl">
|
|
|
|
<button type="button" mat-icon-button [disabled]="disabled">
|
|
|
|
<mat-icon
|
|
|
|
[matBadge]="listOfSpeakers.waitingSpeakerAmount > 0 ? listOfSpeakers.waitingSpeakerAmount : null"
|
|
|
|
matBadgeColor="accent"
|
|
|
|
>
|
|
|
|
mic
|
|
|
|
</mat-icon>
|
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
|
2019-04-23 16:57:35 +02:00
|
|
|
<button type="button" *ngIf="menuItem" mat-menu-item [routerLink]="listOfSpeakers.listOfSpeakersUrl">
|
|
|
|
<mat-icon>mic</mat-icon>
|
|
|
|
<span translate>List of speakers</span>
|
|
|
|
</button>
|
|
|
|
</ng-container>
|
|
|
|
</ng-container>
|