summaryrefslogtreecommitdiff
path: root/app/views/manufacturers/_index_core.html.haml
blob: 5efa5d9a6c17e0faf26f538e93b8bbe301a2adf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
%table{:class => 'table table-striped'}
  %tr
    %th= t('manufacturers.index.name')
    %th= t('manufacturers.index.ieee_name')
    %th= t('manufacturers.index.homepage_url')
    %th= t('manufacturers.index.phone_models')

  
  - for manufacturer in manufacturers
    %tr
      %td= manufacturer.name
      %td= manufacturer.ieee_name
      %td
        - if manufacturer.homepage_url
          =link_to manufacturer.homepage_url, manufacturer.homepage_url
      %td
        = manufacturer.phone_models.map{|x| x.to_s }.join(', ')
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => manufacturer}