{% extends "scls/softwarecollection_sub_base.html" %} {% block scl_menu_collaborators %} active btn-primary {% endblock %} {% block submenu %}{% include "scls/submenu.html" %}{% endblock %} {% block title %}Manage Collaborators{% endblock %} {% block content %}

Manage Collaborators

Use this form to add or remove collaborators. Collaborators are allowed to manage this Software Collection.

{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% csrf_token %} {% for item in form %}
{{ item }} {% for error in item.errors %}
{{ error }}
{% endfor %} {% if item.help_text %} {{ item.help_text }} {% endif %}
{% endfor %}
{% endblock %}