17 lines
787 B
Twig
17 lines
787 B
Twig
<table class="table table-hover">
|
|
<tbody>
|
|
<tr>
|
|
<th style="text-align:left">Unterbringung in Wohnheim gewünscht:</th>
|
|
<td>{{ registrierung.wohnheim ? 'Ja' : 'Nein'}}
|
|
{% if registrierung.wohnheim == 1 %}<br>
|
|
<a href="https://www.bs-pegnitz.de/blog/informationen-zum-berufsschulinternat-pegnitz/" target="_blank">Hier für weitere Informationen zur Wohnheimunterbringung klicken.</a>{% endif %}
|
|
</tr>
|
|
|
|
<tr>
|
|
<th style="text-align:left">Mitteilung an die Berufsschule Pegnitz:</th>
|
|
<td{% if registrierung.mitteilung is null %} class="font-weight-light font-italic"{% endif %}>{% if registrierung.mitteilung is not null %}{{ registrierung.mitteilung }}{% else %}Keine Mitteilung{% endif %}</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|