16 lines
755 B
Twig
16 lines
755 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://bs1-bt.de/service-download/heimunterbringung" target="_blank">Hier für weitere Informationen zur Wohnheimunterbringung klicken.</a>{% endif %}
|
|
</tr>
|
|
|
|
<tr>
|
|
<th style="text-align:left">Mitteilung an die Berufsschule I:</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> |