comments on aviaries

This commit is contained in:
gw3000 2023-07-13 23:02:32 +02:00
parent 038940adbd
commit 01efde870e
2 changed files with 3 additions and 0 deletions

View file

@ -9,5 +9,6 @@ class AviaryAdmin(admin.ModelAdmin):
"description", "description",
"condition", "condition",
"last_ward_round", "last_ward_round",
"comment",
] ]
list_filter = ("description", "condition", "last_ward_round") list_filter = ("description", "condition", "last_ward_round")

View file

@ -42,6 +42,7 @@
<th>Bezeichnung</th> <th>Bezeichnung</th>
<th>Zustand</th> <th>Zustand</th>
<th>letzte Visite</th> <th>letzte Visite</th>
<th>Bemerkung</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -52,6 +53,7 @@
</td> </td>
<td>{{ aviary.condition }}</td> <td>{{ aviary.condition }}</td>
<td>{{ aviary.last_ward_round }}</td> <td>{{ aviary.last_ward_round }}</td>
<td>{{ aviary.comment }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>