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

{% if account.data.valid == 1 and account.data.provisioned == 2 %} {% elseif account.data.valid == 1 and (account.data.provisioned == 0 or account.data.provisioned == 3)%} {% elseif account.data.valid == 1 and account.data.provisioned == 1 %} {% elseif account.data.valid == 0 %} {% else %} {% endif %}
{% endif %}