(dates)
| 541 | |
| 542 | def get_admin_stats(): |
| 543 | def f(dates): |
| 544 | keys = ["/admin/stats/" + date.isoformat() for date in dates] |
| 545 | docs = web.ctx.site.get_many(keys) |
| 546 | return g(docs) |
| 547 | |
| 548 | def has_doc(date): |
| 549 | return bool(web.ctx.site.get("/admin/stats/" + date.isoformat())) |
no test coverage detected