Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created December 4, 2015 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/2863cff879e87b01a4b8 to your computer and use it in GitHub Desktop.
Save chuck0523/2863cff879e87b01a4b8 to your computer and use it in GitHub Desktop.
<h3>おでん</h3>
<table>
<thead>
<tr>
<th>名前</th>
<th>値段</th>
</tr>
</thead>
<tbody>
<% @lawson_oden.each do |oden| %>
<tr>
<td><%= oden.name %></td>
<td><%= oden.price %></td>
</tr>
<% end %>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment