blob: 715db3c69c7030365ac235f58cf8860ff457f230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
%table.table.table-striped
%thead
%tr
%th= t('ringtones.index.audio')
%th= t('ringtones.index.bellcore_id')
%tbody
- for ringtone in ringtones
%tr
%td= ringtone.audio
%td= ringtone.bellcore_id
=render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => ringtone.ringtoneable, :child => ringtone}
|