d739b982bb
set Default action to "create amendment" (if permitted) put edit in the menu put next and prev motion in the menu (mobile) resort motion menu move "show enitre motion text" under the motion-preview change "show entire motion text" from button to checkbox create a custom tooltip for the main action in os-head-bar create a custom "cancel edit" function in os-head-bar overwork location.back logic
24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
<ng-container *osPerms="'agenda.can_see_list_of_speakers'">
|
|
<ng-container *ngIf="listOfSpeakers">
|
|
<a class="anchor-button" *ngIf="!menuItem" [routerLink]="listOfSpeakersUrl">
|
|
<button type="button" mat-icon-button [disabled]="disabled" [matTooltip]="tooltip | translate">
|
|
<mat-icon
|
|
[matBadge]="listOfSpeakers.waitingSpeakerAmount > 0 ? listOfSpeakers.waitingSpeakerAmount : null"
|
|
matBadgeColor="accent"
|
|
>
|
|
{{ icon }}
|
|
</mat-icon>
|
|
</button>
|
|
</a>
|
|
|
|
<button type="button" *ngIf="menuItem" mat-menu-item [routerLink]="listOfSpeakers.listOfSpeakersUrl">
|
|
<mat-icon>{{ icon }}</mat-icon>
|
|
<span translate>List of speakers</span>
|
|
<span> </span>
|
|
<mat-basic-chip disableRipple class="lightblue" *ngIf="listOfSpeakers.waitingSpeakerAmount > 0">
|
|
<span>{{ listOfSpeakers.waitingSpeakerAmount }}</span>
|
|
</mat-basic-chip>
|
|
</button>
|
|
</ng-container>
|
|
</ng-container>
|