← All Projects

{{ project }} dashboard

Queue status and calibration context for this project.

{{ pending_count }}
Pending
{{ completed_count }}
Completed
{{ cal_state.scale_factor | round(4) }}
Scale Factor
{{ cal_state.reviews_since_last_calibration }}
Reviews Since Calibration

Pending Reviews

{% if pending %}
{% for item in pending %} {% endfor %}
IDModuleRaw ScoreCalibratedTriggerCreated
{{ item.id[:8] }}… {{ item.module_type }} {{ item.raw_score | round(4) }} {{ item.calibrated_score | round(4) }} {{ item.trigger_reason }} {{ item.created_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}

No pending reviews. ✓

{% endif %}

Completed Reviews

{% if completed %}
{% for item in completed %} {% endfor %}
IDModuleRaw ScoreCalibratedCompleted At
{{ item.id[:8] }}… {{ item.module_type }} {{ item.raw_score | round(4) }} {{ item.calibrated_score | round(4) }} {{ item.completed_at.strftime('%Y-%m-%d %H:%M') if item.completed_at else '—' }}
{% else %}

No completed reviews yet.

{% endif %}