feat: Show which objects are not-geocoded
This commit is contained in:
parent
36c2004b0f
commit
51df946bac
@ -22,10 +22,39 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<p>{% translate "Texte scheinen vollständig" %}</p>
|
<p>{% translate "Texte scheinen vollständig" %}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<h2>{% translate "Nicht-lokalisierte Vermittlungen" %}</h2>
|
<h2>{% translate "Nicht-lokalisierte Vermittlungen" %}</h2>
|
||||||
|
{% if number_not_geocoded_adoption_notices > 0 %}
|
||||||
|
<details>
|
||||||
|
<summary>{{ number_not_geocoded_adoption_notices }}/{{ number_of_adoption_notices }}</summary>
|
||||||
|
<ul>
|
||||||
|
{% for adoption_notice in none_geocoded_adoption_notices %}
|
||||||
|
<li>
|
||||||
|
<a href="{{ adoption_notice.get_absolute_url }}">{{ adoption_notice.name }}</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</details>
|
||||||
|
{% else %}
|
||||||
<p>{{ number_not_geocoded_adoption_notices }}/{{ number_of_adoption_notices }}</p>
|
<p>{{ number_not_geocoded_adoption_notices }}/{{ number_of_adoption_notices }}</p>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<h2>{% translate "Nicht-lokalisierte Tierschutzorganisationen" %}</h2>
|
<h2>{% translate "Nicht-lokalisierte Tierschutzorganisationen" %}</h2>
|
||||||
|
{% if number_not_geocoded_rescue_orgs > 0 %}
|
||||||
|
<details>
|
||||||
|
<summary>{{ number_not_geocoded_rescue_orgs }}/{{ number_of_rescue_orgs }}</summary>
|
||||||
|
<ul>
|
||||||
|
{% for rescue_org in none_geocoded_rescue_orgs %}
|
||||||
|
<li>
|
||||||
|
<a href="{{ rescue_org.get_absolute_url }}">{{ rescue_org.name }}</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</details>
|
||||||
|
{% else %}
|
||||||
<p>{{ number_not_geocoded_rescue_orgs }}/{{ number_of_rescue_orgs }}</p>
|
<p>{{ number_not_geocoded_rescue_orgs }}/{{ number_of_rescue_orgs }}</p>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<form class="notification-card-mark-read" method="post">
|
<form class="notification-card-mark-read" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<input type="hidden" name="action" value="clean_locations">
|
<input type="hidden" name="action" value="clean_locations">
|
||||||
|
@ -429,10 +429,13 @@ def instance_health_check(request):
|
|||||||
clean_locations(quiet=False)
|
clean_locations(quiet=False)
|
||||||
|
|
||||||
number_of_adoption_notices = AdoptionNotice.objects.all().count()
|
number_of_adoption_notices = AdoptionNotice.objects.all().count()
|
||||||
number_not_geocoded_adoption_notices = AdoptionNotice.objects.filter(location__isnull=True).count()
|
none_geocoded_adoption_notices = AdoptionNotice.objects.filter(location__isnull=True)
|
||||||
|
number_not_geocoded_adoption_notices = len(none_geocoded_adoption_notices)
|
||||||
|
|
||||||
|
|
||||||
number_of_rescue_orgs = RescueOrganization.objects.all().count()
|
number_of_rescue_orgs = RescueOrganization.objects.all().count()
|
||||||
number_not_geocoded_rescue_orgs = RescueOrganization.objects.filter(location__isnull=True).count()
|
none_geocoded_rescue_orgs = RescueOrganization.objects.filter(location__isnull=True)
|
||||||
|
number_not_geocoded_rescue_orgs = len(none_geocoded_rescue_orgs)
|
||||||
|
|
||||||
# CHECK FOR MISSING TEXTS
|
# CHECK FOR MISSING TEXTS
|
||||||
languages = Language.objects.all()
|
languages = Language.objects.all()
|
||||||
@ -449,8 +452,10 @@ def instance_health_check(request):
|
|||||||
context = {
|
context = {
|
||||||
"number_of_adoption_notices": number_of_adoption_notices,
|
"number_of_adoption_notices": number_of_adoption_notices,
|
||||||
"number_not_geocoded_adoption_notices": number_not_geocoded_adoption_notices,
|
"number_not_geocoded_adoption_notices": number_not_geocoded_adoption_notices,
|
||||||
|
"none_geocoded_adoption_notices": none_geocoded_adoption_notices,
|
||||||
"number_of_rescue_orgs": number_of_rescue_orgs,
|
"number_of_rescue_orgs": number_of_rescue_orgs,
|
||||||
"number_not_geocoded_rescue_orgs": number_not_geocoded_rescue_orgs,
|
"number_not_geocoded_rescue_orgs": number_not_geocoded_rescue_orgs,
|
||||||
|
"none_geocoded_rescue_orgs": none_geocoded_rescue_orgs,
|
||||||
"missing_texts": missing_texts
|
"missing_texts": missing_texts
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user