{% extends 'scipost/_personal_page_base.html' %} {% load bootstrap %} {% block pagetitle %}: contributors filter{% endblock pagetitle %} {% block breadcrumb_items %} {{block.super}} Draft registration invitation {% endblock %} {% block content %}
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.
{% for name in names_not_found %}{{ name }}{% if not forloop.last %}
{% endif %}{% endfor %}
{% endif %}
{% for name in names_found %}{{ name }}{% if not forloop.last %}
{% endif %}{% endfor %}
{% endif %}
{% endif %}
{% endblock %}