{% with recommendation|traffic_light as traffic_light_html %}
{% if traffic_light_html %}
{{ recommendation|traffic_light }}
{% endif %}
{% endwith %}
{% with assigned_reviewers|average_review_score as average %}
{% if average %}
{{ average }}
{% endif %}
{% endwith %}
{% if not staff_reviewers_exist %}
{% if request.user.is_org_faculty %}
{% trans "No staff reviewers yet" %}
{% else %}
{% trans "No public reviews yet" %}
{% endif %}
{% endif %}
{% regroup assigned_reviewers by type as reviewers_list %}
{% for reviewer_type, reviewers in reviewers_list %}
{% if not forloop.first %}
{% ifchanged reviewer_type %}
{% endifchanged %}
{% endif %}
{% for reviewer in reviewers %}
{% if reviewer_type.name in hidden_types %}
{% include 'funds/includes/review_sidebar_item.html' with reviewer=reviewer hidden=True %}
{% if forloop.last %}