{% for person in page.reviewers.all %}
{% with person_page=person.reviewer.specific %}
{% if person_page.active and person_page.live %}
{% if forloop.counter0 == 10 %}
{% endif %}
{% if forloop.counter0 < 10 %}
{% include "public_funds/includes/reviewer_listing.html" with person=person.reviewer.specific %}
{% else %}
{% include "public_funds/includes/reviewer_listing.html" with person=person.reviewer.specific class="show-more--target" %}
{% endif %}
{% endif %}
{% endwith %}
{% endfor %}