Merge branch 'master' of git://github.com/Chill-project/Person

This commit is contained in:
Marc Ducobu 2014-11-19 09:44:08 +01:00
commit 51115b6f36
2 changed files with 3 additions and 2 deletions

View File

@ -37,7 +37,8 @@ Chill\PersonBundle\Entity\Person:
cFData:
type: array
phonenumber:
type:text
type: text
nullable: true
manyToOne:
countryOfBirth:
targetEntity: Chill\MainBundle\Entity\Country

View File

@ -44,7 +44,7 @@
</td>
<td>
{% if person.nationality is not null %}
<span class="personNationality">{{person.nationality.label}}</span>
<span class="personNationality">{{person.nationality.name | localize_translatable_string }}</span>
{% else %}
{{ 'Without nationality'|trans }}
{% endif %}