diff --git a/web/eccs.js b/web/eccs.js
index ca30a8cf7c45544ded022b1f0430abfcf2f4b8c3..2b8f8aa64aba2dcda1c924a46fbd83cbeeadca67 100644
--- a/web/eccs.js
+++ b/web/eccs.js
@@ -319,10 +319,18 @@ $(document).ready(function() {
             },
             {
                 "data": "displayName",
-                "defaultContent": ''
+                "defaultContent": '',
+                "render": function(data, type, row, meta) {
+                    return '[' + row.date + '] ' + data + '</a>';
+                }
             },
             { "data": "entityID" },
-            { "data": "registrationAuthority" },
+            {
+                "data": "registrationAuthority",
+                "render": function(data, type, row, meta) {
+                    return '<a href="' + row.registrationAuthority + ' target="_blank"">' + data + '</a>';
+                }
+            },
             {
                 "data": "date",
                 "width": "180px",