onlineanmeldung-pegnitz/templates/allgemein/_show.html.twig

17 lines
719 B
Twig

<table class="table table-hover">
<tbody>
<tr>
<th>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 %}
</td>
</tr>
<tr>
<th>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>