7 lines
375 B
Plaintext
7 lines
375 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<artists type="array">
|
|
<% @artists.each do |artist| %>
|
|
<artist group_name="<%= artist.group_name %>" other_names="<%= artist.other_names %>" urls="<%= artist.urls.map {|x| x.url}.join(" ") %>" is_active="<%= artist.is_active? %>" name="<%= artist.name %>" updater_id="0" id="<%= artist.id %>" version="0"/>
|
|
<% end %>
|
|
</artists>
|