{# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_validation_page.html.twig #}
{% if responseContents is not empty %}
Person name Email Username Subdomain Valid Provisioned
{{ responseContents.data.personName }} {{ responseContents.data.email }} {{ responseContents.data.username }} {{ responseContents.data.subdomain }} {% if responseContents.data.valid == 1 %} yes {% elseif responseContents.data.valid == 0 %} no {% else %} unknown {% endif %} {% if responseContents.data.provisioned == 1 %} yes {% elseif responseContents.data.provisioned == 0 %} no {% elseif responseContents.data.provisioned == 2 %} ongoing {% else %} unknown {% endif %}

{% if responseContents.data.valid == 1 and responseContents.data.provisioned == 1 %} {% elseif responseContents.data.valid == 1 and responseContents.data.provisioned == 0 %} {% elseif responseContents.data.valid == 1 and responseContents.data.provisioned == 2 %} {% elseif responseContents.data.valid == 0 %} {% else %} {% endif %}
{% endif %}