On 28 February 2016 at 04:37, fugee ohu <
fuge...@gmail.com> wrote:
> ..
> Hi again and thanks again Tam I got it working like this
> <td><a href= "<%=
task.name %>"><%= image_tag(task.name.thumb) %></a></td>
>
Unless I am missing something, this might be clearer
<td>
<%= link_to image_tag(task.name.thumb),
task.name %>
</td>
Colin