{% extends 'analysispage.html' %} {% block title %}Add Collaborator{% endblock %} {% block links %} Project: {{ project }} {% endblock %} {% block desc %}

Use the forms below to add a collaborator to this project. If the collaborator is already registered as a user, he or she will be added to this project, and will see it on their "My Data" page. If not already a registered user, he or she will receive an email to first set up an account. After they set a password, they will be able to view this project.

{% endblock %} {% block innercontent %}
{% if error %}
{{ error }}
{% endif %}

Add New Collaborator

{% csrf_token %}

Listed below are users that you are currently assigned to a project with.

{% csrf_token %} {% if other_users %} {% for other_user in other_users %}
{% endfor %} {% else %}

No current users

{% endif %}
{% endblock %}