From 7b6d266a0b72a8c291556619edc79ead20feb222 Mon Sep 17 00:00:00 2001
From: Geert Kapteijns <ghkapteijns@gmail.com>
Date: Tue, 14 Feb 2017 20:36:32 +0100
Subject: [PATCH] Fix empty href in thesislink detail

---
 theses/templates/theses/_thesislink_information.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/theses/templates/theses/_thesislink_information.html b/theses/templates/theses/_thesislink_information.html
index 0edfdd6e4..1c4c0e759 100644
--- a/theses/templates/theses/_thesislink_information.html
+++ b/theses/templates/theses/_thesislink_information.html
@@ -32,7 +32,7 @@
         <td>Subject area: </td><td></td><td> {{ thesislink|subject_area }} </td>
     </tr>
     <tr>
-        <td>URL: </td><td>&nbsp;</td><td><a href="{{ pub_link }}" target="_blank">{{ thesislink.pub_link }}</a></td>
+        <td>URL: </td><td>&nbsp;</td><td><a href="{{ thesislink.pub_link }}" target="_blank">{{ thesislink.pub_link }}</a></td>
     </tr>
     <tr>
         <td>Degree granting institution: </td><td>&nbsp;</td><td>{{ thesislink.institution }}</td>
-- 
GitLab