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",
"condition",
"last_ward_round",
"comment",
]
list_filter = ("description", "condition", "last_ward_round")

View file

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