Report 100 most recent results where missing=true

Closes: #16
This commit is contained in:
Edward Betts 2023-12-15 11:16:35 +00:00
parent 65e3de1b57
commit 223cdc4728
2 changed files with 51 additions and 0 deletions

View file

@ -371,6 +371,15 @@ def reports() -> str:
.limit(50)
)
missing_places = (
database.session.query(model.LookupLog)
.filter(
model.LookupLog.result.has_key("missing") # type: ignore
) # Filtering for entries where result contains 'missing'
.order_by(model.LookupLog.dt.desc()) # Ordering by dt in descending order
.limit(50) # Limiting to the top 50 results
)
return render_template(
"reports.html",
log_count=log_count,
@ -378,6 +387,7 @@ def reports() -> str:
average_response_time=average_response_time,
by_day=by_day,
top_places=top_places,
missing_places=missing_places,
)