{% load admin_tags %}
{% with project=item page='user' %}
{% include "admin/_details_h4_lt.html" %}
{{ project|status_label|safe }}
{% if project.last_application %}
{{ project.last_application|status_label|safe }}
{% endif %}
UUID: {{ project.uuid }}
{% if project.is_base %}
SYSTEM
{% else %}
Members: {{ project.members_count }}
{% endif %}
- ID
- {{ project.id }}
- UUID
- {{ project.uuid }}
- Name
- {{ project.realname|default:"(not set)" }}
{% if not project.is_base %}
- Owner
- {{ project.owner.realname|default:"(not set)" }}
- Homepage url
- {{ project.homepage|default:"(not set)" }}
{% endif %}
- Description
- {{ project.description }}
- Creation date
- {{ project.creation_date }}
{% if not project.is_base %}
- End date
- {{ project.end_date }}
{% endif %}
- Project Status
- {{ project|get_status_from_instance }}
{% if project.last_application %}
- Application Status
- {{ project.last_application|get_status_from_instance }}
{% if project.last_application.comments %}
- Comments for Review
- {{ project.last_application.comments }}
{% endif %}
{% endif %}
UUID |
Name |
Status |
{% with members=project|get_project_members %}
{% for m in members %}
{% for val in m %}
{{ val }} |
{% endfor %}
{% empty %}
No members available |
{% endfor %}
{% endwith %}
- Max members
- {{ project.limit_on_members_number }}
- Current members
- {{ project.members_count }}
- Join policy
- {{ project.member_join_policy_display }}
- Leave policy
- {{ project.member_leave_policy_display }}
|
{% if not project.is_base %}
Max per Member |
{% endif %}
Max per Project |
Usage |
{% with stats=project|get_project_stats %}
{% for resource_name, values in stats.items %}
{{ resource_name }} |
{% for value in values %}
{{ value }} |
{% endfor %}
{% endfor %}
{% endwith %}
{% if last_app %}
|
Initial |
Final |
Changes |
{% with mod=project|get_project_modifications %}
{% with rows=mod.details %}
{% for row in rows %}
{{ row.label }} |
{{ row.old }} |
{{ row.new }} |
{% if row.diff %}
{{ row.diff }}
{% endif %}
|
{% endfor %}
{% endwith %}
{% with rows=mod.policies %}
{% for row in rows %}
{{ row.label }} |
{{ row.old }} |
{{ row.new }} |
{% if row.diff %}
{{ row.diff }}
{% endif %}
|
{% endfor %}
{% endwith %}
{% with rows=mod.resources %}
{% for row in rows %}
{{ row.label }} * |
{{ row.old_member }} / {{ row.old_project }} |
{{ row.new_member }} / {{ row.new_project }} |
{{ row.diff_member }}
 / 
{{ row.diff_project }}
|
{% endfor %}
{% endwith %}
{% endwith %}
* The displayed values represent max resources per member / max resources per project.
{% endif %}
{% include "admin/action_list_horizontal.html" %}
{% endwith %}