A bit late, I know, but you could try adding something along the lines of:
<?php if($post->post_parent) {
$parent_link = get_permalink($post->post_parent); ?>
<a href="<?php echo $parent_link; ?>">Link to parent page</a>
<?php } ?>
to your template file.