blob: 89379091266f94baac423aa20db9f2bebc265108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
%table
%tr
%th= t('manufacturers.index.name')
%th= t('manufacturers.index.ieee_name')
%th= t('manufacturers.index.homepage_url')
%th= t('manufacturers.index.phone_models')
- reset_cycle
- for manufacturer in manufacturers
%tr{:class => cycle('odd', 'even')}
%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}
|