diff --git a/client/src/app/site/modules/site-wrapper/components/banner/banner.component.html b/client/src/app/site/modules/site-wrapper/components/banner/banner.component.html index b72a27c864b..100084c2b25 100644 --- a/client/src/app/site/modules/site-wrapper/components/banner/banner.component.html +++ b/client/src/app/site/modules/site-wrapper/components/banner/banner.component.html @@ -2,6 +2,7 @@ @for (banner of activeBanners | async; track banner) {
- + {{ getCandidateAmount(assignment) }}
diff --git a/client/src/app/site/pages/meetings/pages/motions/pages/motion-list/components/motion-list/motion-list.component.html b/client/src/app/site/pages/meetings/pages/motions/pages/motion-list/components/motion-list/motion-list.component.html index eca3ab2bd8f..bf67adfeddb 100644 --- a/client/src/app/site/pages/meetings/pages/motions/pages/motion-list/components/motion-list/motion-list.component.html +++ b/client/src/app/site/pages/meetings/pages/motions/pages/motion-list/components/motion-list/motion-list.component.html @@ -219,7 +219,15 @@

- + @if (motion.category.parent) {
{{ motion.category.parent.toString() }} @@ -232,13 +240,21 @@

- {{ motion.block.title }} + + {{ motion.block.title }} +

} @if (motion.tags && motion.tags.length) {
- + {{ tag.getTitle() }} diff --git a/client/src/app/site/pages/meetings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html b/client/src/app/site/pages/meetings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html index 5c5fafdbffe..439ff408772 100644 --- a/client/src/app/site/pages/meetings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html +++ b/client/src/app/site/pages/meetings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html @@ -129,7 +129,11 @@

Participants

@if (user.groups()?.length) {
- + {{ group.getTitle() }} @@ -138,12 +142,22 @@

Participants

} @if (user.structure_levels()?.length) {
- {{ user.structure_levels() }} + + {{ user.structure_levels() }} +
} @if (user.number()) {
- {{ user.number() }} + + {{ user.number() }} +
} @if (user.vote_delegated_to() && voteDelegationEnabled) { @@ -152,7 +166,15 @@

Participants

matTooltip="{{ 'Voting right delegated to (proxy)' | translate }}" matTooltipPosition="left" > - {{ user.vote_delegated_to() }} + + {{ user.vote_delegated_to() }} +
} @if (user.vote_delegations_from_ids()?.length && voteDelegationEnabled) { @@ -161,7 +183,13 @@

Participants

matTooltip="{{ 'Voting right received from (principals)' | translate }}" matTooltipPosition="left" > - + {{ user.vote_delegations_from().length }}: {{ user.vote_delegations_from() }} diff --git a/client/src/app/ui/modules/file-list/file-list.component.html b/client/src/app/ui/modules/file-list/file-list.component.html index a2a1e6f45a5..783a6a84b5a 100644 --- a/client/src/app/ui/modules/file-list/file-list.component.html +++ b/client/src/app/ui/modules/file-list/file-list.component.html @@ -126,14 +126,17 @@ (keydown.enter)="onEditFile(mediafile, fileEditDialog)" > @if (isInMeeting) { - + {{ $any(group).getTitle() }} } @if (!isInMeeting) { - + }
}