OSDN Git Service

pass test license controller
[pettanr/pettanr.git] / app / views / licenses / index.html.erb
1 <h1>Listing licenses</h1>
2
3 <table>
4   <tr>
5     <th>name</th>
6     <th>caption</th>
7     <th>url</th>
8     <th>created_at</th>
9     <th>updated_at</th>
10     <th></th>
11   </tr>
12
13 <% @licenses.each do |license| %>
14   <tr>
15     <td><%= h license.name %></td>
16     <td><%= h license.caption %></td>
17     <td><%= h license.url %></td>
18     <td><%= license.created_at %></td>
19     <td><%= license.updated_at %></td>
20   </tr>
21 <% end -%>
22 </table>