{% extends "base.html" %} {% block title %}{{ status_label }} merge candidates · goon{% endblock %} {% block content %}
{{ status_label }} · {{ total }} total
{% if items %} {% for it in items %}
{{ '%.2f' % it.score }}
{% endfor %} {% if total > per_page %}
{% if page > 1 %} ← prev {% endif %} page {{ page }} of {{ ((total - 1) // per_page) + 1 }} {% if page * per_page < total %} next → {% endif %}
{% endif %} {% else %}
No candidates with status = {{ status }}.
{% endif %} {% endblock %}