** Would it require me to modify the code to make a link from the event view ? **
You would have to make the link yourself.
Each field of the event can be printed using code like:
<%= $EVENT->{'details'}->{Field_Key} %>
Field_Key being the key of the event field you want printed. Unfortunately those values may contain spaces which are not allowed in URLs so you'd have to URL encode them before printing into a link code using something like:
<%= &HTML::encodeHTML($EVENT->{'details'}->{Field_Key}) %>
Dan O.
------------------