Dears
I have this link which is working correctly but would like to know if
it’s possible to create a second link within the same request.
this is the original link <%= link_to s.achternaam, {:action => ‘show’,
:id => s.id} -%> and I would like to have something like <%=
link_to s.naam, s.achternaam, {:action => ‘show’, :id => s.id} -%>
but don’t now how to adapt the action part for this
thanks for your help
kind regards
Paul
ok
stupid question found the solution
<%= link_to s.naam, {:action => ‘show’,
:id => s.id} -%> <%= link_to s.achternaam, {:action => ‘show’,
:id => s.id} -%>
Paul P. wrote:
Dears
I have this link which is working correctly but would like to know if
it’s possible to create a second link within the same request.
this is the original link <%= link_to s.achternaam, {:action => ‘show’,
:id => s.id} -%> and I would like to have something like <%=
link_to s.naam, s.achternaam, {:action => ‘show’, :id => s.id} -%>
but don’t now how to adapt the action part for this
thanks for your help
kind regards
Paul