Functionele omschrijving
difficulty level:
Teilnehmervariablen
Dieser Abschnitt beschreibt die verfügbaren Variablen in der Teilnehmervorlage.
| Variable | Beschreibung | Beispiel |
|---|---|---|
| {S_PARTICIPANTS} | Eine Steuervariable, um anzugeben, ob die Teilnehmertabelle gefüllt ist | Wahr / Nicht wahr |
| {participants.NAME} | vTechnischer Name des Teilnehmers (Typ). Nicht zu verwechseln mit dem Nachnamen des Teilnehmers |
Erwachsener |
| {participants.DESCRIPTION} | Beschreibung des Teilnehmers (Typ) | Erwachsener |
| {participants.PART_ID} | ID | 2 |
| {participants.PRESENT} | Anwesend | Ja |
| {participants.TEL_MOB} | Mobil | |
| {participants.EMAIL} | ||
| {participants.INITIALS} | Initialen | |
| {participants.FIRSTNAME} | Vorname | |
| {participants.PREFIX} | Namenszusatz | |
| {participants.LASTNAME} | Nachname | |
| {participants.SEX} | Geschlecht | |
| {participants.BIRTHDATE} | Geburtsdatum | |
| {participants.MEMBERNUMBER} | Mitgliedsnummer | |
| {participants.ID_NUMBER} | ID-Nummer | |
| {participants.ID_TYPE} | ID-Typ | |
| {participants.CUSTOMxx} | Benutzerdefiniertes Feld | |
| {participants.ETICKET} | QR-Code des Teilnehmers | |
| {participants.ETICKET_CODE} | Der Code, der zugrunde liegend im QR-Bild verwendet wird. |
Eine Beispieltabelle mit Teilnehmerzeilen:
<table align="center" border="1" cellpadding="0" cellspacing="1" style="width:100%">
<tbody>
<tr>
<td>Technische naam</td>
<td>Omschrijving</td>
<td>ID</td>
<td>Present</td>
<td>Initialen</td>
<td>Tussenvoegsel</td>
<td>Achternaam</td>
</tr>
<!-- BEGIN participants -->
<tr>
<td>{participants.NAME}</td>
<td>{participants.DESCRIPTION}</td>
<td>{participants.PART_ID}</td>
<td>{participants.PRESENT}</td>
<td>{participants.INITIALS}</td>
<td>{participants.PREFIX}</td>
<td>{participants.LASTNAME}</td>
</tr>
<!-- END participants -->
</tbody>
</table>
Häufig gewünscht ist eine Möglichkeit, die Summen der Teilnehmer als separate Tabelle aufzunehmen.
Dies ist möglich, indem ein Block parttotals aufgenommen wird.
Eine Beispieltabelle mit Summen:
<table class="part_summary">
<tbody>
<tr>
<th>ID</th>
<th>Omschrijving</th>
<th>Aantal</th>
</tr>
<!-- BEGIN parttotals -->
<tr>
<td>{parttotals.PRT_ID}</td>
<td>{parttotals.PRT_NAME}</td>
<td>{parttotals.PRT_NUMBER}</td>
</tr>
<!-- END parttotals -->
</tbody>
</table>
Eine Beispieltabelle mit QR-Code des Teilnehmers in der Vorlage (wichtig dabei ist, dass der Kontext auf Anmeldung steht):
<table align="center" border="1" cellpadding="0" cellspacing="1" style="width:100%">
<tbody>
<tr>
<td>Technische naam</td>
<td>Omschrijving</td>
<td>ID</td>
<td>Present</td>
<td>Initialen</td>
<td>Tussenvoegsel</td>
<td>Achternaam</td>
</tr>
<!-- BEGIN participants -->
<tr>
<td>{participants.NAME}</td>
<td>{participants.DESCRIPTION}</td>
<td>{participants.PART_ID}</td>
<td>{participants.PRESENT}</td>
<td>{participants.INITIALS}</td>
<td>{participants.PREFIX}</td>
<td>{participants.LASTNAME}</td>
<td>{participants.ETICKET}</td>
</tr>
<!-- END participants -->
</tbody>
</table>Für die Verwendung von Teilnehmervariablen sind Kenntnisse über die Funktionsweise der Detailzeilen erforderlich.
Zur Funktionsweise der Zeilen sehen Sie sich auch die Funktionsweise der Schleifen an.






