{% extends "registration/layout.html" %} {% block accounts_title %}Group registration{% endblock %} {% block accounts %}

What is a group?

A group (or research group) is a set of users (developers and researchers) that have (or will have) access to testbed resources for deploying their experiments.

Although anyone can create a group and manage its users; the group still needs explicit approval by testbed admins to have access to testbed resources (nodes, slices and slivers).

A group is composed by three kinds of members. Here a roughly definition of their members roles:

Research Group Information:

{% csrf_token %} {% for field in form %}
{{ field.errors }} {{ field.label_tag }}: {{ field }}

{{ field.help_text }}

{% endfor %} {% if request.user.is_authenticated %} {% else %}{# also show user registration form #}

Administrator information:

Are you a registered user? Please log in to register a new group using your account.

{% for field in user_form %}
{{ field.errors }} {{ field.label_tag }}: {{ field }}

{{ field.help_text }}

{% endfor %} {% endif %}
{% endblock %}