More improvements
This commit is contained in:
@@ -26,47 +26,10 @@ const props = defineProps({
|
||||
Du hast noch kein erweitertes Führungszeugnis hinterlegt. Bitte reiche es umgehend ein.
|
||||
</div>
|
||||
|
||||
<template v-if="props.participant.paymentSummary?.hasPaymentInformation">
|
||||
<!-- Frei konfigurierter Text (z.B. Barzahlung) -->
|
||||
<div v-if="props.participant.paymentSummary.html" v-html="props.participant.paymentSummary.html"
|
||||
style="margin-bottom: 16px;"></div>
|
||||
|
||||
<!-- Strukturierte Zeilen (z.B. Überweisung) -->
|
||||
<template v-else>
|
||||
<table class="form-table" style="margin-bottom: 16px;">
|
||||
<tr v-for="(line, index) in props.participant.paymentSummary.lines" :key="line.label">
|
||||
<td>{{ line.label }}:</td>
|
||||
<td><strong v-if="line.label === 'Betrag'">{{ line.value }}</strong>
|
||||
<template v-else>{{ line.value }}</template>
|
||||
</td>
|
||||
<td v-if="index === 0 && props.participant.paymentSummary.showGiroCode && props.participant.identifier !== ''"
|
||||
:rowspan="props.participant.paymentSummary.lines.length"
|
||||
style="vertical-align: top; padding-left: 20px;">
|
||||
<img :src="'/print-girocode/' + props.participant.identifier" alt="GiroCode"
|
||||
style="max-width: 180px;"/>
|
||||
<span
|
||||
style="width: 180px; text-align: center; display: block; font-size: 0.8rem; color: #6b7280; margin-top: 4px;">Giro-Code</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>
|
||||
<a class="link"
|
||||
:href="`/api/v1/event/participant/${props.participant.identifier}/ical-payment`">Erinnerung
|
||||
in Kalender setzen</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>
|
||||
Bitte beachte, dass deine Anmeldung erst nach Zahlungseiongang vollständig ist.<br/>
|
||||
Wenn dieser nicht bis zum {{ props.event.registrationFinalEnd.formatted }} erfolgt, kann deine
|
||||
Anmeldung storniert werden.<br/><br/>
|
||||
Solltest du den Beitrag bis zu diesem Datum nicht oder nur teilweise überweisen können, kontaktiere
|
||||
bitte die Aktionsleitung, damit wir eine gemeinsame Lösiung finden können.
|
||||
</p>
|
||||
</template>
|
||||
</template>
|
||||
<!-- Zahlungs-Block kommt vollständig aus dem Zahlungsmodul (registrationSummary -> html). -->
|
||||
<div v-if="props.participant.paymentSummary?.hasPaymentInformation"
|
||||
v-html="props.participant.paymentSummary.html"
|
||||
style="margin-bottom: 16px;"></div>
|
||||
<p v-else>
|
||||
Du musst keinen Beitrag überweisen. Deine Anmeldung ist bestätigt.
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user