{% extends "template.html" %} {% block head %} {% endblock %} {% block content %} Choose a Condition (Debug Mode Only) {% if lookup_configured %} {% if looked_up_condition %}
Condition lookup hit. Configured source resolved external ID {{ external_id }} to condition {{ looked_up_condition }}. In production this would be assigned automatically — pick {{ looked_up_condition }} below to mirror that, or pick a different value to override for debugging.
{% elif external_id %}
Condition lookup miss. External ID {{ external_id }} was not found in any configured lookup source. In production this would render the "ID Not Recognized" error page. Picking a condition below lets you continue anyway for debugging.
{% else %}
Condition lookup configured but pending. The participant has not entered an external ID yet, so the lookup cannot run. The balancer would normally pick the condition shown below.
{% endif %} {% endif %} {% for row in rows %}
{{ row.num }}. {{ row.label }} {% if row.is_lookup %} This is the condition the lookup resolved to. {% elif row.is_organic %} This condition would normally be automatically assigned. {% endif %}
{{ row.count }} participant{{ '' if row.count == 1 else 's' }} {% if not row.enabled %}· disabled{% endif %}
{% endfor %} {% endblock %}