Age of Bird
This commit is contained in:
parent
6ca3eaefa8
commit
fbaef27c3a
6 changed files with 32 additions and 23 deletions
|
@ -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" }} €</td>
|
||||
<td>{{ bird.age|default_if_none:"" }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -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" }} €</td>
|
||||
<td>{{ bird.age|default_if_none:"" }} </td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue