{% extends 'base.html.twig' %} {% block title %}Cliente{% endblock %} {% block body %}
| Id | {{ cliente.id }} |
|---|---|
| Nombre | {{ cliente.nombre }} |
| Apellido | {{ cliente.apellido }} |
| Dni | {{ cliente.dni }} |
| Direccion | {{ cliente.direccion }} |
| Barrio | {{ cliente.barrio }} |
| Telefono | {{ cliente.telefono }} |
| Apodo | {{ cliente.apodo }} |
| FechaNacimiento | {{ cliente.fechaNacimiento ? cliente.fechaNacimiento|date('Y-m-d') : '' }} |
| Oficio | {{ cliente.oficio }} |
| Latitude | {{ cliente.latitude }} |
| Longitude | {{ cliente.longitude }} |
| Address | {{ cliente.address }} |
| Locality | {{ cliente.locality }} |
| Country | {{ cliente.country }} |
| CreatedAt | {{ cliente.createdAt ? cliente.createdAt|date('Y-m-d H:i:s') : '' }} |
| UpdatedAt | {{ cliente.updatedAt ? cliente.updatedAt|date('Y-m-d H:i:s') : '' }} |