{% load i18n %}

{% trans "Overview" %}


{% trans "Project Name" %}
{{ project.name }}
{% trans "Project ID" %}
{{ project.id }}
{% trans "Type" %}
{{ project.project_type_name }}
{% if domain_enabled %}
{% trans "Domain Name" %}
{% if domain_accessible %}
{{ project.domain_name }}
{% else %}
{{ project.domain_name }}
{% endif %} {% endif %}
{% trans "Instances" %}
{{ instances_count }}
{% trans "Enabled" context "Enabled field for project" %}
{{ project.enabled|yesno|capfirst }}
{% trans "Description" %}
{{ project.description|default:_("None") }}

{% trans "SLA" %}


{% trans "Up time" %}
{{ up_time }}%
{% trans "Recovery time" %}
{{ recovery_time }} {% trans "h" %}
{% trans "Movable" %}
{{ movable|yesno|capfirst }}
{% if can_view_quotas %}

{% trans "Quotas" %}


{% for label, quota in quotas.items %}
{{ label }}
{{ quota|default_if_none:'-' }}
{% empty %} {% trans "No quotas." %} {% endfor %}
{% endif %}