onlineanmeldung-pegnitz/templates/kontaktperson/_mail_show.html.twig

22 lines
742 B
Twig

<h3 class="headlineFont">{{ kontaktperson.anrede == 'H' ? 'Herr' : 'Frau' }} {{ kontaktperson.vorname }} {{ kontaktperson.nachname }}</h3>
<table class="table table-hover">
<tbody>
<tr>
<th style="text-align:left">Straße und Hausnummer:</th>
<td>{{ kontaktperson.strasse }} {{ kontaktperson.hausnummer }}</td>
</tr>
<tr>
<th style="text-align:left">Ort:</th>
<td>{{ kontaktperson.plz }} {{ kontaktperson.ort }}</td>
</tr>
<tr>
<th style="text-align:left">Telefonnummer:</th>
<td>{{ kontaktperson.telefonnummer }}</td>
</tr>
<tr>
<th style="text-align:left">E-Mail Adresse:</th>
<td>{{ kontaktperson.email }}</td>
</tr>
</tbody>
</table>