diff --git a/profiles/templates/profiles/profile_form.html b/profiles/templates/profiles/profile_form.html
index b5e021cfcd8da36d25df6b56fd5325c926068176..3f0bd456bd6cdc7b5d380b9be7e46dce28030c32 100644
--- a/profiles/templates/profiles/profile_form.html
+++ b/profiles/templates/profiles/profile_form.html
@@ -16,7 +16,7 @@
     <h4>Matching profiles found for this {{ from_type }}</h4>
     <ul>
       {% for matching_profile in matching_profiles %}
-      <li>{{ matching_profile }} (id {{ matching_profile.id }}, {{ matching_profile.email }})&nbsp;&nbsp;<a href="{% url 'profiles:profile_match' profile_id=matching_profile.id from_type=from_type pk=pk %}"><i class="fa fa-arrow-right"></i> Match this {{ from_type }} to this Profile</a>
+      <li><a href="{{ matching_profile.get_absolute_url }}" target="_blank">{{ matching_profile }}</a> (id {{ matching_profile.id }}, {{ matching_profile.email }})&nbsp;&nbsp;<a href="{% url 'profiles:profile_match' profile_id=matching_profile.id from_type=from_type pk=pk %}"><i class="fa fa-arrow-right"></i> Match this {{ from_type }} to this Profile</a>
       </li>
       {% endfor %}
     </ul>