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

Contributors filter

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.

{% csrf_token %} {{ form|bootstrap }}
{% if form.is_bound %}

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 %}
{% endif %} {% endif %} {% endblock %}