If a post is published to Discourse using the WP Discourse plugin the permalink to the post is saved in the wp post meta field discourse_permalink. So you just need to show that in your theme where you want the link to appear. Something like this:
<li><a href="<?php get_post_meta(get_the_ID(), 'discourse_permalink', true); ?>">Discuss this on our form</a></li>