- {% translate "Service" %}
-
{{ instance.context.service_definition.service.name }}
- {% translate "Service Provider" %}
-
{{ instance.context.service_offering.provider.name }}
- {% translate "Control Plane" %}
-
{{ instance.context.control_plane.name }}
- {% translate "Created By" %}
-
{{ instance.created_by }}
- {% translate "Created At" %}
-
{{ instance.created_at|date:"SHORT_DATETIME_FORMAT" }}
- {% translate "Updated At" %}
-
{{ instance.updated_at|date:"SHORT_DATETIME_FORMAT" }}
- {% translate "Status" %}
-
{% if instance.is_deleted %}
{% translate "Deleted" %}
{% else %}
{% translate "Active" %}
{% endif %}
{% if instance.status_conditions %}
{% translate "Type" %} |
{% translate "Status" %} |
{% translate "Last Transition Time" %} |
{% translate "Reason" %} |
{% translate "Message" %} |
{% for condition in instance.status_conditions %}
{{ condition.type }} |
{% if condition.status == "True" %}
True
{% elif condition.status == "False" %}
False
{% else %}
{{ condition.status }}
{% endif %}
|
{{ condition.lastTransitionTime }} |
{{ condition.reason }} |
{{ condition.message }} |
{% endfor %}
{% endif %}
{% if instance.spec %}
{% translate "Property" %} |
{% translate "Value" %} |
{% for key, value in instance.spec.items %}
{{ key }} |
{% if value|default:""|stringformat:"s"|slice:":1" == "{" or value|default:""|stringformat:"s"|slice:":1" == "[" %}
{{ value|pprint }}
{% else %}
{{ value }}
{% endif %}
|
{% endfor %}
{% endif %}
{% if instance.connection_credentials %}
{% translate "Name" %} |
{% translate "Value" %} |
{% for key, value in instance.connection_credentials.items %}
{{ key }} |
{% if key == "error" %}
{{ value }}
{% else %}
{{ value }}
{% endif %}
|
{% endfor %}
{% endif %}