parsley/app/views/ingredients/usda_food_search.html.erb

20 lines
281 B
Plaintext
Raw Normal View History

2016-01-28 14:19:51 -06:00
<table class="table">
<thead>
<tr>
<th>NDBN</th>
<th>Name</th>
</tr>
</thead>
<% @foods.each do |f| %>
<tr>
<th><%= f.ndbn %></th>
2016-01-28 18:18:45 -06:00
<th><%= link_to f.long_description, '#', class: 'food_result', data: {ndbn: f.ndbn} %></th>
2016-01-28 14:19:51 -06:00
</tr>
<% end %>
</table>