{% extends 'scipost/base.html' %} {% block pagetitle %}: add team member{% endblock pagetitle %} {% block bodysup %}

Add Members to Team

{% if contributors_found %}

Identified as contributor:

{% for contributor in contributors_found %} {% endfor %}
{{ contributor.user.first_name }} {{ contributor.user.last_name }}  Add to the Team
{% elif add_team_member_form.has_changed %}

No Contributor with this last name could be identified.

{% else %}

Add a member to the Team:

{% csrf_token %} {{ add_team_member_form.as_table }}
{% endif %}
{% endblock bodysup %}