diff --git a/src/servala/frontend/templates/frontend/organizations/service_instance_detail.html b/src/servala/frontend/templates/frontend/organizations/service_instance_detail.html index b85642f..7ae410f 100644 --- a/src/servala/frontend/templates/frontend/organizations/service_instance_detail.html +++ b/src/servala/frontend/templates/frontend/organizations/service_instance_detail.html @@ -10,8 +10,10 @@
{% translate "Type" %} | +{% translate "Status" %} | +{% translate "Last Transition Time" %} | +{% translate "Reason" %} | +{% translate "Message" %} | +|||||
---|---|---|---|---|---|---|---|---|---|
{% translate "Type" %} | -{% translate "Status" %} | -{% translate "Last Transition Time" %} | -{% translate "Reason" %} | -{% translate "Message" %} | +{{ condition.type }} | ++ {% if condition.status == "True" %} + True + {% elif condition.status == "False" %} + False + {% else %} + {{ condition.status }} + {% endif %} + | +{{ condition.lastTransitionTime }} | +{{ condition.reason }} | +{{ condition.message }} |
{{ condition.type }} | -- {% if condition.status == "True" %} - True - {% elif condition.status == "False" %} - False - {% else %} - {{ condition.status }} - {% endif %} - | -{{ condition.lastTransitionTime }} | -{{ condition.reason }} | -{{ condition.message }} | -