blob: 2050dedcf4e57ae04e12d1ec25caa4a4b7534390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
%table
%tr
%th= t('addresses.index.phone_book_entry_id')
%th= t('addresses.index.line1')
%th= t('addresses.index.line2')
%th= t('addresses.index.street')
%th= t('addresses.index.zip_code')
%th= t('addresses.index.city')
%th= t('addresses.index.country_id')
%th= t('addresses.index.position')
- reset_cycle
- for address in addresses
%tr{:class => cycle('odd', 'even')}
%td= address.phone_book_entry_id
%td= address.line1
%td= address.line2
%td= address.street
%td= address.zip_code
%td= address.city
%td= address.country_id
%td= address.position
=render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => address.phone_book_entry, :child => address}
|