Closed zarino closed 5 months ago
The homepage table contains 164 district councils, but on any given district council’s individual page, it’s reported that there are 186:
Likewise, the homepage table shows 21 county councils, but an individual county council’s page reports 24:
I’m fairly sure these numbers were correct at launch time, so has something changed since?
The count on individual council pages comes from this council_count variable, on line 395 of views.py:
council_count
council_count = Council.objects.filter( authority_type__in=group["types"], country__in=group["countries"], ).count()
Should it be limiting to just councils that existed at the time of the scoring?
The homepage table contains 164 district councils, but on any given district council’s individual page, it’s reported that there are 186:
Likewise, the homepage table shows 21 county councils, but an individual county council’s page reports 24:
I’m fairly sure these numbers were correct at launch time, so has something changed since?
The count on individual council pages comes from this
council_count
variable, on line 395 of views.py:Should it be limiting to just councils that existed at the time of the scoring?