OSDN Git Service

7f1e90504a824a20b0b5f7ad32cc6ce3c7a5ba64
[pettanr/pettanr.git] / app / views / common_licenses / index.html.erb
1 <h1>Listing common_licenses</h1>
2
3 <table>
4   <tr>
5     <th>name</th>
6     <th>url</th>
7     <th>cc_by</th>
8     <th>cc_sa</th>
9     <th>cc_nd</th>
10     <th>cc_nc</th>
11     <th>no_resize</th>
12     <th>no_flip</th>
13     <th>no_convert</th>
14     <th>keep_aspect_ratio</th>
15     <th></th>
16     <th></th>
17     <th></th>
18   </tr>
19
20 <% @common_licenses.each do |common_license| %>
21   <tr>
22     <td><%= h common_license.name %></td>
23     <td><%= h common_license.url %></td>
24     <td><%= common_license.cc_by %></td>
25     <td><%= common_license.cc_sa %></td>
26     <td><%= common_license.cc_nd %></td>
27     <td><%= common_license.cc_nc %></td>
28     <td><%= common_license.no_resize %></td>
29     <td><%= common_license.no_flip %></td>
30     <td><%= common_license.no_convert %></td>
31     <td><%= common_license.keep_aspect_ratio %></td>
32     <td><%= link_to 'Show', common_license %></td>
33     <td><%= link_to 'Edit', edit_common_license_path(common_license) %></td>
34     <td><%= link_to 'Destroy', common_license, confirm: 'Are you sure?', method: :delete %></td>
35   </tr>
36 <% end %>
37 </table>
38
39 <br />
40
41 <%= link_to 'New Common_license', new_common_license_path %>