feat: add additional information column
This commit is contained in:
parent
f56e830a43
commit
41da9b91a6
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user