OSDN Git Service

w
[pettanr/pettanr.git] / app / views / licenses / browse.html.erb
1 <h1><%= t '.title' -%></h1>
2
3 <p>
4   <b><%= t_m 'License.id' -%>:</b>
5   <%= @license.id %>
6 </p>
7 <p>
8   <b><%= t_m 'License.license_group_id' -%>:</b>
9   <%= link_to @license.license_group_id, :controller => 'license_groups', :action => :browse, :id => @license.license_group_id %>
10 </p>
11 <p>
12   <b><%= t_m 'License.name' -%>:</b>
13   <%= h @license.name %>
14 </p>
15 <p>
16   <b><%= t_m 'License.caption' -%>:</b>
17   <%= h @license.caption %>
18 </p>
19 <p>
20   <b><%= t_m 'License.url' -%>:</b>
21   <%= link_to h(@license.url), @license.url %>
22 </p>
23 <p>
24   <b><%= t_m 'License.system_picture_id' -%>:</b>
25   <%= link_to @license.system_picture_id, :controller => 'system_pictures', :action => :browse, :id => @license.system_picture_id %>
26 </p>
27 <p>
28   <b><%= t_m 'License.credit_pictures' -%>:</b>
29   <%= @license.credit_pictures %>
30 </p>
31   <b><%= t_m 'License.settings' -%>:</b>
32   <%= h @license.settings %>
33 </p>
34 <p>
35   <b><%= t_m 'License.created_at' -%>:</b>
36   <%= l @license.created_at %>
37 </p>
38 <p>
39   <b><%= t_m 'License.updated_at' -%>:</b>
40   <%= l @license.updated_at %>
41 </p>
42
43 <%= link_to t('link.back'), :action => :list %>