summaryrefslogtreecommitdiffstats
path: root/app/views/imports/show.html.erb
blob: ca963ab3713ae36387477449f3c0d63d0d2397aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<h2><%= import_title %></h2>

<% if @import.saved_items.count > 0 %>
  <p><%= l(:notice_import_finished, :count => @import.saved_items.count) %>:</p>

  <%= render :partial => "#{import_partial_prefix}_saved_objects", :locals => { saved_objects: @import.saved_objects } %>
<% end %>

<% if @import.unsaved_items.count > 0 %>
  <p><%= l(:notice_import_finished_with_errors, :count => @import.unsaved_items.count, :total => @import.total_items) %>:</p>

  <table id="unsaved-items" class="list">
    <thead>
    <tr>
      <th>Position</th>
      <th>Message</th>
    </tr>
    </thead>
    <tbody>
    <% @import.unsaved_items.each do |item| %>
    <tr>
      <td><%= item.position %></td>
      <td><%= simple_format_without_paragraph item.message %></td>
    </tr>
    <% end %>
    </tbody>
  </table>
<% end %>

<%= render :partial => "#{import_partial_prefix}_sidebar" %>