Age of Bird

This commit is contained in:
gw3000 2023-07-22 21:58:58 +02:00
parent 6ca3eaefa8
commit fbaef27c3a
6 changed files with 32 additions and 23 deletions

View file

@ -60,6 +60,7 @@
<th>Status</th>
<th>Voliere</th>
<th>Kosten</th>
<th>Alter</th>
</tr>
</thead>
<tbody>
@ -75,6 +76,7 @@
<td>{{ bird.status }}</td>
<td>{{ bird.aviary|default_if_none:"" }}</td>
<td>{{ bird.total_costs|default_if_none:"0,00" }} &euro;</td>
<td>{{ bird.age|default_if_none:"" }}</td>
</tr>
{% endfor %}
</tbody>

View file

@ -53,6 +53,7 @@
<th>Fundort</th>
<th>Status</th>
<th>Kosten</th>
<th>Alter</th>
</tr>
</thead>
<tbody>
@ -67,6 +68,7 @@
<td>{{ bird.place }}</td>
<td>{{ bird.status }}</td>
<td>{{ bird.total_costs|default_if_none:"0,00" }} &euro;</td>
<td>{{ bird.age|default_if_none:"" }} </td>
</tr>
{% endfor %}
</tbody>

View file

@ -4,7 +4,8 @@
{% block content %}
<h3>Patient <strong>{{ bird.bird_identifier }}</strong> bearbeiten </h3>
<p>Finder des Patienten: <strong> <a href="{% url 'rescuer_single' bird.rescuer_id %}">{{ bird.rescuer|default_if_none:"" }}</a></strong></p>
<p>Finder des Patienten: <strong> <a href="{% url 'rescuer_single' bird.rescuer_id %}">{{ bird.rescuer|default_if_none:"" }}</a></strong>.
Das Alter des Patienten bei Fund wurde mit <strong>{{ bird.age }}</strong> angegeben.</p>
<div class="row">
<div class="col-lg-5 mb-3">
<form method="post" enctype="multipart/form-data">