By benchmarking the filtered list against any other lists, a comparison is made between the filtered list and other lists, where the results indicate how accurate the filtering is.

{% for pub_list in available_publication_lists %} {% with pub_list_id=pub_list.id %} {% if pub_list != publication_list and pub_list.publications.all|length > 0 %} {% endif %} {% endwith %} {% endfor %}
List Name User Publications Shared with '{{ publication_list.name }}' Shared with filtered list
{% if pub_list.user %} {{ pub_list.user }} {% endif %} {{pub_list.publications.all|length}} {% if overall_results %} {% if overall_results.all %} {% for key, results in overall_results.all.items %} {% if key == pub_list_id %} {{results.shared}} / {{ results.total }} ({{results.shared_rate }})
{% endif %} {% endfor %} {% endif %} {% endif %}
{% if overall_results %} {% if overall_results.filtered %} {% for key, results in overall_results.filtered.items %} {% if key == pub_list_id %} {{results.shared}} / {{ results.total }} ({{results.shared_rate }})
{% endif %} {% endfor %} {% endif %} {% endif %}
{{ filter_text }}
{% if detailed_results %}
{% include "mapping/mapping_list/compare.html" %}
{% endif %}