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

  %tbody
    - 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}