7 lines
532 B
Plaintext
7 lines
532 B
Plaintext
<% for curr in @currencies %>
|
|
<% if @curr_id.to_i == curr.id %>
|
|
<%= link_to "#{curr.name} (#{curr.description})", {controller: :home, action: :get_trades, curr_id: curr.id}, remote: true, class: "btn btn-primary btn-md btn-block active", role: "button", 'aria-pressed' => true %><br/>
|
|
<% else %>
|
|
<%= link_to "#{curr.name} (#{curr.description})", {controller: :home, action: :get_trades, curr_id: curr.id}, remote: true, class: "btn btn-primary btn-md btn-block", role: "button" %><br/>
|
|
<% end%>
|
|
<% end %> |