{% extends 'scipost/_personal_page_base.html' %} {% load bootstrap %} {% block pagetitle %}: contributors filter{% endblock pagetitle %} {% block breadcrumb_items %} {{block.super}} <<<<<<< HEAD Pool ======= Draft registration invitation Contributors filter >>>>>>> development {% endblock %} {% block content %}

Contributors filter

<<<<<<< HEAD
=======

This form can be used to split your list of names into a list of names with registered or already invited Contributors and a list of unknown names according to the current database.

Please, for every name use the format {last name} or {last name}, {first name} and use one name per line.

>>>>>>> development
{% csrf_token %} {{ form|bootstrap }}
{% if form.is_bound %} <<<<<<< HEAD {% if names_not_found %}
{% for contributor in names_not_found %}{{ contributor }}{% endfor %}
{% endif %} {% if names_found %}
{% for contributor in names_found %}{{ contributor }}{% endfor %}
=======

Filter result

{% if names_not_found %}

New names

{% for name in names_not_found %}{{ name }}{% if not forloop.last %}
{% endif %}{% endfor %}
{% endif %}
{% if names_found %}

Names found in the system

{% for name in names_found %}{{ name }}{% if not forloop.last %}
{% endif %}{% endfor %}
>>>>>>> development {% endif %} {% endif %} {% endblock %}