Bugfix in Mailer
This commit is contained in:
parent
4c33b726be
commit
ab39a78f2e
@ -7,7 +7,7 @@
|
||||
<table class="table table-hover">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="text-align:left; width: 30%;">Name (gesamt):</th>
|
||||
<th style="text-align:left; width: 30%;">Name:</th>
|
||||
<td>{{ schueler.rufname }} {{ schueler.nachname }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -18,7 +18,13 @@
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="text-align:left; width: 30%;">Beruf:</th>
|
||||
<td>{{ ausbildung.beruf.bezeichnung }}</td>
|
||||
<td>
|
||||
{% if ausbildung and ausbildung.beruf and ausbildung.beruf.bezeichnung %}
|
||||
{{ ausbildung.beruf.bezeichnung }}
|
||||
{% else %}
|
||||
Ohne
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user