{% extends "dashboard/base.html" %} {% load staticfiles %} {% load i18n %} {% load render_table from django_tables2 %} {% block title-page %}{% trans "Group list" %}{% endblock %} {% block content %}
{% trans "Back" %}

{% trans "Request" %}

{{ object.get_readable_status|upper }}

{{ object.user.profile.get_display_name }}

{{ object.reason }}


{% if object.type == "lease" %}
{% trans "VM name" %}
{{ action.instance.name }}
{% trans "VM description" %}
{{ action.instance.description }}
{% trans "Current Lease" %}
{{ action.instance.lease }}
{% trans "Requested Lease" %}
{{ action.lease_type.lease }}
{% elif object.type == "template" %}
{% trans "Template type" %}: {{ action.template_type.name }}
    {% for t in action.template_type.templates.all %}
  • {{ t }}
  • {% endfor %}
{% trans "Level" %}
{{ action.get_readable_level }}
{% elif object.type == "resource" %}
{% trans "VM name" %}
{{ action.instance.name }}
{% trans "VM description" %}
{{ action.instance.description }}
{% trans "Priority" %} {% trans "(old values in parentheses)" %}
{{ action.priority }} ({{ action.instance.priority }})
{% trans "Number of cores" %}
{{ action.num_cores }} ({{ action.instance.num_cores }})
{% trans "Ram size" %}
{{ action.ram_size }} ({{ action.instance.ram_size }}) MiB
{% else %} hacks!!! {% endif %} {% if object.status == "PENDING" %}
{% csrf_token %}
{% csrf_token %}
{% else %} close date {% endif %}
{% endblock %}