{% extends 'default/base.html.twig' %} {% block custom_css %} {% endblock %} {% block content %} {{'Form.Return' | trans}}

{{data.name}} ({{data.sigle}})

{% if data.description is not null %}
{{data.description}}
{% endif %} {% if data.status == 1 %}
{{'Form.Status' | trans}}: {{'Form.Cadre.Public' | trans}}
{% elseif data.status == 2 %}
{{'Form.Status' | trans}}: {{'Form.Cadre.Private' | trans}}
{% elseif data.status == 3 %}
{{'Form.Status' | trans}}: {{'Form.Cadre.ParaPublic' | trans}}
{% elseif data.status == 4 %}
{{'Form.Status' | trans}}: {{'Form.Cadre.Special' | trans}}
{% endif %} {% if data.country is not null %}
{{'Form.Country' | trans}}: {{data.country | country_name}}
{% endif %} {% if data.telephone1 is not null %}
{{'Form.Telephone' | trans}}: {{data.telephone1~" / "~data.telephone2}}
{% endif %} {% if data.fax is not null %}
{{'Form.Fax' | trans}}: {{data.fax}}
{% endif %} {% if data.email is not null %}
{{'Form.Email' | trans}}: {{data.email}}
{% endif %} {% if data.web is not null %}
{{'Form.Web' | trans}}: {{data.web}}
{% endif %} {% if data.addressPost is not null %}
{{'Form.AddressPost' | trans}}: {{data.addressPost}}
{% endif %} {% if data.addressPhy is not null %}
{{'Form.AddressPhy' | trans}}: {{data.addressPhy}}
{% endif %}
{%set logo = root_path()~"/uploads/cadre/logo-"~data.creaBy~"."~data.logoExt %} {%set flag = root_path()~"/uploads/cadre/flag-"~data.creaBy~"."~data.flagExt %}
{{'Table.Cadre.Logo' | trans}} {{'Table.Cadre.Flag' | trans}}
{% if fileExists(logo) %} {% else %} {{'Message.FileNotFound' | trans}} {% endif %} {% if fileExists(flag) %} {% else %} {{'Message.FileNotFound' | trans}} {% endif %}
{% endblock %} {% block custom_js %} {% endblock %}