{% with nr_possible=ci_checker.possible_works|length nr_exact=ci_checker.exact_works|length %} {% comment %} Matches found {% endcomment %} {% if nr_exact > 0 %}
{% include "bi/exclamation-triangle-fill.html" %}
Possible co-authorships:
{{ nr_exact }} exact match{{ nr_exact|pluralize:'es' }} out of {{ nr_possible }} possible work{{ nr_possible|pluralize }} found
(see more)
{% for work in ci_checker.exact_works %}
{{ work.title }} {% if work.doi %} {% include "bi/link.html" %} {% endif %}
by {% for work_author in work.author_list %} {{ work_author }} {% if not forloop.last %},{% endif %} {% endfor %}
{% empty %} No works found. {% endfor %} {% comment %} No matches found {% endcomment %} {% else %}
{% include "bi/check-circle-fill.html" %}
No possible co-authorships found
{% endif %}
{% endwith %}