OSDN Git Service

t#31223:add them contents list for author and artist
[pettanr/pettanr.git] / app / views / provider_statuses / _original_pictures_errors.html.erb
1 <h2>
2   <%= t('provider_statuses.original_pictures_import.fail', :size => failures.size) %>
3 </h2>
4 <table>
5   <tr>
6     <th><%= t_m 'OriginalPicture.id' -%></th>
7     <th><%= t_m 'OriginalPicture.artist_id' -%></th>
8     <th><%= t_m 'OriginalPicture.md5' -%></th>
9   </tr>
10   <% failures.each do |original_picture| %>
11     <tr>
12       <td>
13         <%= h(original_picture['id']) %>
14       </td>
15       <td>
16         <%= h(original_picture['artist_id']) %>
17       </td>
18       <td>
19         <%= h(original_picture['md5']) %>
20       </td>
21     </tr>
22   <% end %>
23 </table>