{% extends basetemplate %} {% load forcegroups %} {% block extracss %} {% endblock %} {% block body %}

Proctor Groups


{% for test, allocation in allocations.items %}

{{ test }}

{% if allocation.ranges %}
Original Allocations
{% for range in allocation.ranges %} {{ range.name }} - {{ range.percentage }}% {% endfor %}
{% endif %} {% if allocation.forced %}

This test has been forced into its group assignment.

{% endif %} {% if allocation.assignment == None %}
Test not found in proctor response (you may not have the correct identifier set)
{% endif %}
{% for b in allocation.buckets %}

{{ b.description }}
{% endfor %}
{% if allocation.forced %}
{% endif %}

{% endfor %}
{% endblock %}