{% extends "im/account_base.html" %} {% load filters %} {% load astakos_tags %} {% block headjs %} {{ block.super }} {% endblock %} {% block page.body %}

{% if update_form %}REQUEST PROJECT MODIFICATION{% else %}REQUEST PROJECT{% endif %} / {% if show_form %} FORM {% else %} {% if update_form %}CONFIRM{% else %}CONFIRM{% endif %} {% endif %}

{% if not show_form %}

These are the specifications of the Project you want to create. If you hit the "Submit" button this form will be officially sent to GRNET for review. Please make sure the following reflect exactly your request. After submitting, there is no way to modify your Project request.

{% endif %} {% if show_form %}
{% csrf_token %}
1. PROJECT DETAILS more info To create a new Project, first enter the following required fields. The information you enter, except Comments for review, will be visible to all ~okeanos users. {% for key, err in form.errors.items %} {% if key == "__all__" %}
{{ err }}
{% endif %} {% endfor %} {% for field in form %} {% if field.name in details_fields %}
{{ field.errors }}

{{ field.label_tag }} {{ field|safe }}   {% if field.help_text %} more info {{ field.help_text|safe }} {% endif %}

{% endif %} {% endfor %} {% for g, resources in resource_catalog %} {% for r in resources %} {% with r.str_repr as rname %} {% with object|resource_grants|lookup:rname as value %} {% endwith %} {% endwith %} {% endfor %} {% endfor %}
2. MEMBERSHIP OPTIONS more info Membership options {% for field in form %} {% if field.name in membership_fields %}
{{ field.errors }}

{{ field.label_tag }} {{ field|safe }}   {% if field.help_text %} more info {{ field.help_text|safe }} {% endif %}

{% endif %} {% endfor %}
3. RESOURCES more info Here you add resources to your Project. Each resource you specify here, will be granted to *EACH* user of this Project. So the total resources will be: <Total number of members> * <amount_of_resource> for each resource.
 
{% for gname, resources in resource_catalog %}
X remove resource {% for rdata in resources %} {% with rdata.str_repr as rname %}
{% if rdata.is_abbreviation %} {{ rdata.verbose_name|upper }} {% else %} {{ rdata.verbose_name|capfirst }} {% endif %} more info {{ rdata.help_text }}

  more info{{ rdata.help_text_input_each }}

Invalid format

{% endwith %} {% endfor %}
{% endfor %}
{% else %} {% include "im/projects/projectapplication_form_summary.html" %} {% endif %} {% endblock %}