{% extends 'base.html' %} {% load static %} {% load project_templatetags %} {% block title %}Create Research Environment{% endblock %} {% block local_js_top %} {% endblock %} {% block local_css %} {% endblock %} {% block content %}
{% include "message_snippet.html" %}

Create Workspace

{% if exceeded_quotas|length > 0 %}

You have exceeded the following quotas:

    {% for quota in exceeded_quotas %}
  • {{ quota }}
  • {% endfor %}
{% else %}
{% csrf_token %} {{ form }}
{% endif %}
{% endblock %}