summaryrefslogtreecommitdiff
path: root/app/views/generic_files/_index_core.html.haml
blob: 5fa66f79d974969ff730c112d929b0fa362b969f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%table.table.table-striped
  %tr
    %th= t('generic_files.index.category')
    %th= t('generic_files.index.name')
    %th= t('generic_files.index.file_type')
    
  - for generic_file in generic_files
    %tr
      %td= generic_file.category
      %td= generic_file.name
      %td= generic_file.file_type
      

      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => generic_file.owner, :child => generic_file}