@@ -84,7 +84,7 @@
|
|||||||
{{ organizerDisplayName(event) }}
|
{{ organizerDisplayName(event) }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<p class="flex gap-1">
|
<p class="flex gap-1" v-if="!event.options.hideNumberOfParticipants">
|
||||||
<AccountMultiple />
|
<AccountMultiple />
|
||||||
<span v-if="event.options.maximumAttendeeCapacity !== 0">
|
<span v-if="event.options.maximumAttendeeCapacity !== 0">
|
||||||
{{
|
{{
|
||||||
@@ -112,29 +112,28 @@
|
|||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
</span>
|
</span>
|
||||||
<span v-if="event.participantStats.notApproved > 0">
|
|
||||||
<o-button
|
|
||||||
variant="text"
|
|
||||||
tag="router-link"
|
|
||||||
:to="{
|
|
||||||
name: RouteName.PARTICIPATIONS,
|
|
||||||
query: { role: ParticipantRole.NOT_APPROVED },
|
|
||||||
params: { eventId: event.uuid },
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
{{
|
|
||||||
$t(
|
|
||||||
"{count} requests waiting",
|
|
||||||
|
|
||||||
{
|
|
||||||
count: event.participantStats.notApproved,
|
|
||||||
},
|
|
||||||
event.participantStats.notApproved
|
|
||||||
)
|
|
||||||
}}
|
|
||||||
</o-button>
|
|
||||||
</span>
|
|
||||||
</p>
|
</p>
|
||||||
|
<o-button
|
||||||
|
v-if="event.participantStats.notApproved > 0"
|
||||||
|
variant="text"
|
||||||
|
tag="router-link"
|
||||||
|
:to="{
|
||||||
|
name: RouteName.PARTICIPATIONS,
|
||||||
|
query: { role: ParticipantRole.NOT_APPROVED },
|
||||||
|
params: { eventId: event.uuid },
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
{{
|
||||||
|
$t(
|
||||||
|
"{count} requests waiting",
|
||||||
|
|
||||||
|
{
|
||||||
|
count: event.participantStats.notApproved,
|
||||||
|
},
|
||||||
|
event.participantStats.notApproved
|
||||||
|
)
|
||||||
|
}}
|
||||||
|
</o-button>
|
||||||
</div>
|
</div>
|
||||||
</router-link>
|
</router-link>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user