no aviary in inactive bird overview

This commit is contained in:
gw3000 2023-07-20 11:40:06 +02:00
parent 9387dea2aa
commit 71c6b1f388

View file

@ -52,7 +52,6 @@
<th>Finder</th> <th>Finder</th>
<th>Fundort</th> <th>Fundort</th>
<th>Status</th> <th>Status</th>
<th>Voliere</th>
<th>Kosten</th> <th>Kosten</th>
</tr> </tr>
</thead> </thead>
@ -63,11 +62,10 @@
<td>{{ bird.bird }}</td> <td>{{ bird.bird }}</td>
<td>{{ bird.date_found }}</td> <td>{{ bird.date_found }}</td>
<td> <td>
<a href="{% url 'rescuer_single' bird.rescuer_id %}">{{ bird.rescuer }}</a> <a href="{% url 'rescuer_single' bird.rescuer_id %}">{{ bird.rescuer|default_if_none:"" }}</a>
</td> </td>
<td>{{ bird.place }}</td> <td>{{ bird.place }}</td>
<td>{{ bird.status }}</td> <td>{{ bird.status }}</td>
<td>{{ bird.aviary|default_if_none:"" }}</td>
<td>{{ bird.total_costs|default_if_none:"0,00" }} &euro;</td> <td>{{ bird.total_costs|default_if_none:"0,00" }} &euro;</td>
</tr> </tr>
{% endfor %} {% endfor %}