Skip to content

Instantly share code, notes, and snippets.

@axilaris
Created April 26, 2014 14:00
Show Gist options
  • Select an option

  • Save axilaris/11320765 to your computer and use it in GitHub Desktop.

Select an option

Save axilaris/11320765 to your computer and use it in GitHub Desktop.
<tbody>
<% @customers.first.data.map do |k,v| %>
<tr>
<td><%= k %></td>
<td><%= v["name"] %></td>
<td><%= v["contact_name"] %></td>
<td><%= v["tel"] %></td>
<td><%= country_helper_get_countryname_by_id(v["country"]) %></td>
<td>
<%= link_to 'edit', :class => "btn btn-small" do %>
<i class="icon-pencil"></i>
<% end %>
<%= link_to 'delete', :class => "btn btn-small" do %>
<i class="icon-remove"></i>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment