{% 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 Research Environment

Project: {{ project.title }}

{% if exceeded_quotas|length > 0 %}

You have exceeded the following quotas:

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

Projected Costs

The prices listed below may vary depending on selected region and time. For further information check: Google Pricing List

{% for region_name, region_instances in projected_costs.items %} {% endfor %}
{% endblock %}