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

{% block page.heading %}REQUEST PROJECT{% endblock %}

{% csrf_token %}
{% block form_details_title %}1. PROJECT DETAILS{% endblock %} {% block form_details_description %} 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 {{ BRANDING_SERVICE_NAME }} users. {% endblock %} {% block form_errors %} {% for key, err in form.errors.items %} {% if key == "__all__" %}
{{ err }}
{% endif %} {% endfor %} {% endblock %} {% for field in form %} {% with filter_fields=details_fields %} {% include "im/projects/_form_field.html" %} {% endwith %} {% endfor %}

Project details of system projects cannot be modified.

2. MEMBERSHIP OPTIONS more info Membership options {% for field in form %} {% with filter_fields=membership_fields %} {% include "im/projects/_form_field.html" %} {% endwith %} {% endfor %}

Membership options of system projects cannot be modified.

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. {% include "im/projects/_form_resource_groups_buttons.html" %}
{% include "im/projects/_form_resources_fields.html" %}
{% endblock %}