feat: add additional information column

This commit is contained in:
moanos [he/him] 2024-05-30 12:49:55 +02:00
parent f56e830a43
commit 41da9b91a6

View File

@ -12,6 +12,7 @@
<tr> <tr>
<th>{% translate "Ort" %}</th> <th>{% translate "Ort" %}</th>
<th>{% translate "Suchen seit" %}</th> <th>{% translate "Suchen seit" %}</th>
<th>{% translate "Weitere Informationen" %}</th>
</tr> </tr>
<tr> <tr>
{% if adoption_notice.location %} {% if adoption_notice.location %}
@ -20,6 +21,11 @@
<td>{% translate "Kein Ort angegeben" %}</td> <td>{% translate "Kein Ort angegeben" %}</td>
{% endif %} {% endif %}
<td>{{ adoption_notice.searching_since }}</td> <td>{{ adoption_notice.searching_since }}</td>
{% if adoption_notice.further_information %}
<td>{{ adoption_notice.further_information }}</td>
{% else %}
<td>-</td>
{% endif %}
</tr> </tr>
</table> </table>
</div> </div>