{{ project }} dashboard
Queue status and calibration context for this project.
{% if request.query_params.get('recalibrated') == 'true' %}
✓ Recalibration completed successfully.
{% endif %}
{{ pending_count }}
Pending
{{ completed_count }}
Completed
{{ cal_state.scale_factor | round(4) if cal_state.scale_factor is not none else '-' }}
Scale Factor
{{ cal_state.reviews_since_last_calibration }}
Reviews Since Calibration
Pending Reviews
{% if pending %}| ID | Module | Raw Score | Calibrated | Trigger | Created |
|---|---|---|---|---|---|
| {{ item.id[:8] }}… | {{ item.module_type }} | {{ item.raw_score | round(4) if item.raw_score is not none else '-' }} | {{ item.calibrated_score | round(4) if item.calibrated_score is not none else '-' }} | {{ item.trigger_reason }} | {{ item.created_at.strftime('%Y-%m-%d %H:%M') if item.created_at else '-' }} |
No pending reviews. ✓
Completed Reviews
{% if completed %}| ID | Module | Raw Score | Calibrated | Completed 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 '—' }} |
No completed reviews yet.
