{% extends "base/base.html" %} {% load static %} {% load custom_tags %} {% block title %} Cluster {{ clusterId }} for {{ question_label }} V{{ version }} Page {{ page_num }} ({{ papers|length }} items) {% endblock title %} {% block page_heading %} Clustered Papers for {{ question_label }} V{{ version }} Page {{ page_num }} ({{ papers|length }} items) {% endblock page_heading %} {% block main_content %} {% include "../base/alert_messages.html" with messages=messages %}
Return to cluster groups
{% if papers %}
{% csrf_token %}
{% for pn in papers %}
{# checkbox keeping track of clicked item #} {# Thumbnail label toggles the checkbox only #} {# Big red “X” overlay when marked #} {# Zoom button in top-right #}
{# Bootstrap modal for zoom #} {% endfor %}
{% else %} There are no papers in this cluster. Consider delete or reset this cluster. {% endif %}
{# Adopted from show_rectangles.html #} {% endblock main_content %}