<div id="extra_information">
<h4 class="ui top attached large header">{{ 'sylius.ui.extra_information'|trans }}</h4>
<div class="ui attached segment">
<table class="ui very basic celled table">
<tbody>
<tr>
<td class="three wide"><strong class="gray text">{{ 'sylius.form.customer.birthday'|trans }}</strong></td>
<td>{{ customer.birthday ? (customer.birthday | date('d-m-Y')) ~ '' }}</td>
</tr>
<tr>
<td class="three wide"><strong class="gray text">{{ 'sylius.form.customer.phone_number'|trans }}</strong></td>
<td>{{ customer.phoneNumber }}</td>
</tr>
<tr>
<td class="three wide"><strong class="gray text">{{ 'app.ui.company'|trans }}</strong></td>
<td>{{ customer.company }}</td>
</tr>
<tr>
<td class="three wide"><strong class="gray text">{{ 'app.ui.social_reason'|trans }}</strong></td>
<td>{{ customer.socialReason }}</td>
</tr>
<tr>
<td class="three wide"><strong class="gray text">{{ 'app.ui.inter_community_tva_number'|trans }}</strong></td>
<td>{{ customer.interCommunityTvaNumber }}</td>
</tr>
<tr>
<td class="three wide"><strong class="gray text">{{ 'app.ui.city'|trans }}</strong></td>
<td>{{ customer.city }}</td>
</tr>
<tr>
<td class="three wide"><strong class="gray text">{{ 'app.ui.country'|trans }}</strong></td>
<td>{{ customer.country|sylius_country_name }}</td>
</tr>
<tr>
<td class="three wide"><strong class="gray text">{{ 'app.ui.secondary_emails'|trans }}</strong></td>
<td>
{% for secondaryEmail in customer.secondaryEmails %}
<span class="ui label">{{ secondaryEmail }}</span>
{% endfor %}
</td>
</tr>
</tbody>
</table>
</div>
</div>