<?php if( have_rows('event') ): ?>
<div class="locations">
<?php while( have_rows('event') ): the_row(); ?>
<div class="location" style="border-bottom:1px solid #fff;">
<?php the_sub_field('location'); //relationship field ERRO ?>
<?php if( have_rows('date_event') ): ?>
<ul class="staff-members">
<?php while( have_rows('date_event') ): the_row(); ?>
<li><?php the_sub_field('date'); //repeater field OK ?></li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>