Dear richardv,
You can use something like this:
<?php
/* Template Name: Customers */
get_header(); ?>
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
Name of the fields: <?php echo get_post_meta($post->ID, 'wpcf-name-of-the-field', true); ?>
<?php endwhile; // end of the loop. ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Please let me know if you are satisfied with my answer and if I can help you with any other questions you might have.