list_[row|column] takes as first param an attribute (or method) that must return an Array or Hash. Por example:
user.abilities
#=> ["animation", "branding", "creative_director_art"]
user.contact
#=> {"twitter"=>"leanstwit", "facebook"=>"leansf"}show do
attributes_table do
# another attributes...
list_row :abilities, localize: true
list_row :contact, localize: true
end
endindex do
# another attributes...
list_row :abilities, localize: true, list_type: :ol
list_row :contact, localize: true
endlocalize: allows you to translate array values or hash keys using the following structure:
[languaje]:
addons_list:
[model_name]:
[method]:
key1: value1
key2: value2es:
addons_list:
user:
abilities:
graphic_artist: Artista gráfico
multimedia_artist: Artista multimedialist_type: allows you to pick between:ul(unordered list) and:ol(ordered list) types.

