OSDN Git Service

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