{% extends "base/base.html" %} {% load static %} {% load custom_tags %} {% block title %} Review unclustered papers for {{ question_label }} v{{ version }} Page {{ page_num }} {% endblock title %} {% block page_heading %} Review unclustered papers for {{ question_label }} v{{ version }} Page {{ page_num }} {% endblock page_heading %} {% block main_content %} {% include "../base/alert_messages.html" with messages=messages %}
Return to cluster groups
{% if unclustered_papers %}
{% csrf_token %}

Unclustered

{{ unclustered_papers|length }}
{% for pn in unclustered_papers %}
{% endfor %}
{% include "QuestionClustering/fragments/unclustered_suggestions_panel.html" %}

Clusters

{{ cluster_groups|length }}
{% for clusterId, count in cluster_groups %} {% with cluster_name=cluster_to_name|get_item:clusterId %} {% with papers=cluster_to_paper_map|get_item:clusterId %}
{% if papers %} {% with pn=papers.0 %} cluster {{ clusterId }} preview {% endwith %} {% else %} No preview {% endif %}
{{ cluster_name|default:"Unnamed" }} Cluster {{ clusterId }}
{{ count }} papers
{% endwith %} {% endwith %} {% endfor %}
{% if not cluster_groups %}
Create a new cluster from selected papers first.
{% endif %}
No unclustered papers remain.
{% else %}
No unclustered papers remain.
{% endif %} {% endblock main_content %}