summaryrefslogtreecommitdiff
path: root/app/views/generic_files/show.html.haml
blob: b375dfceb31abbc73790af19e2df4eea1201e3d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- content_for :title, t("generic_files.show.page_title")

%p
  %strong= t('generic_files.show.category') + ":"
  = @generic_file.category

%p
  %strong= t('generic_files.show.name') + ":"
  = @generic_file.name

%p
  %strong= t('generic_files.show.file_type') + ":"
  = @generic_file.file_type

%p
  %strong= t('generic_files.show.file_size') + ":"
  = number_to_human_size(@generic_file.file_size)


= render :partial => 'shared/show_edit_destroy_part', :locals => { :parent => @parent, :child => @generic_file }