<div class="box box-primary box-solid">
    <div class="box-header with-border">
        <h3 class="box-title">Información de Contacto</h3>
    </div>
    <div class="box-body">
        <table class="table table-striped">
            <tr>
                <th>Telefono Fijo:</th>
                <td>{{ contacto.telefonoFIJO  }}</td>
                <th>Telefono Celular:</th>
                <td>{{ contacto.telefonoCELULAR }}</td>
            </tr>
            <tr>
            <tr>
                <th>Direccion:</th>
                <td>{{ contacto.direccionDOMICILIO }}</td>
                <th>Correo Electronico:</th>
                <td>{{ contacto.personasCorreoPRINCIPAL }}</td>
            </tr>
        </table>
    </div>
</div>

