OSDN Git Service

Merge branch 'v04' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v04
[pettanr/pettanr.git] / app / views / license_groups / index.html.erb
1 <h1>Listing license Groups</h1>
2
3 <table>
4   <tr>
5     <th>id</th>
6     <th>name</th>
7     <th>caption</th>
8   </tr>
9
10 <% @license_groups.each do |lg| %>
11   <tr>
12     <td><%= link_to lg.id, license_group_path(lg) %></td>
13     <td><%= h lg.name %></td>
14     <td><%= content_tag(:a, h(lg.caption), :href => lg.url) %></td>
15   </tr>
16 <% end -%>
17 </table>