blob: c38c6a0914cc461c1a147b762cb7dd7b7a6607ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<h1>Tartiflettes</h1>
<table>
<thead>
<tr>
<th>Nom</th>
</tr>
</thead>
<tbody>
<% @tartiflettes.each do |tartiflette| %>
<tr>
<td><%= tartiflette.name %></td>
</tr>
<% end %>
</tbody>
</table>
|