OSDN Git Service

t#31018:add search om license
[pettanr/pettanr.git] / app / views / licenses / show.html.erb
1 <h1><%= t('.title') %></h1>
2 <p id="notice"><%= notice %></p>
3
4 <p>
5   <b><%= t_m 'License.license_group_id' -%>:</b>
6   <%= link_to h(@license.license_group.caption), license_group_path(@license.license_group) %>
7 </p>
8 <p>
9   <b><%= t_m 'License.name' -%>:</b>
10   <%= h @license.name %>
11 </p>
12 <p>
13   <b><%= t_m 'License.caption' -%>:</b>
14   <%= h @license.caption %>
15 </p>
16 <p>
17   <b><%= t_m 'License.url' -%>:</b>
18   <%= link_to h(@license.url), @license.url %>
19 </p>
20 <p>
21   <b><%= t_m 'License.system_picture_id' -%>:</b>
22   <%= link_to tag(:img, :src => @license.system_picture.url), system_picture_path(@license.system_picture) %>
23 </p>
24 <p>
25   <b><%= t_m 'License.created_at' -%>:</b>
26   <%= l @license.created_at %>
27 </p>
28 <p>
29   <b><%= t_m 'License.updated_at' -%>:</b>
30   <%= l @license.updated_at %>
31 </p>
32 <%= link_to t('link.back'), licenses_path %>