{% extends "im/account_base.html" %} {% load filters %} {% block page.body %} {% with form.data as data %}
{% csrf_token %} CONFIRMATION REQUEST

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.

{% include "im/form_render.html" %}

GENERAL INFO

{{ data.desc|safe }}

Homepage Url
{{ data.homepage }} 
Modarated
{{ data.moderation_enabled|yesno:"Yes, No" }}

DETAILS

Name
{{ data.name }} 
Start date
{{ data.issue_date|date:"d/m/Y"}} 
End Date
{{ data.expiration_date|date:"d/m/Y"}} 
Total number of members
{% if data.max_participants %}{{ data.max_participants }}{% else %}Unlimited{% endif %}

RESOURCES

The following ~okeanos resources will be granted to each member of this Project:

{% for p in policies %}
Max {% if p.is_abbreviation %}{{ p.verbose_name|upper }}{% else %}{{ p.verbose_name }}{% endif %}{% if not p.unit %}s {% endif %} per user
{% if p.uplimit %} {% if p.unit %} {{ p.uplimit|sizeof_fmt }} {% else %} {{ p.uplimit }} {% endif %} {% else %} Unlimited {% endif %}
{% empty %} No resources {% endfor %}
{% endwith %} {% endblock %}