summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/views/imports/show.html.erb10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/views/imports/show.html.erb b/app/views/imports/show.html.erb
index 96b40a663..a50db99fe 100644
--- a/app/views/imports/show.html.erb
+++ b/app/views/imports/show.html.erb
@@ -3,7 +3,7 @@
<% if @import.saved_items.count > 0 %>
<p><%= l(:notice_import_finished, :count => @import.saved_items.count) %></p>
- <ul>
+ <ul id="saved-items">
<% @import.saved_objects.each do |issue| %>
<li><%= link_to_issue issue %></li>
<% end %>
@@ -14,16 +14,20 @@
<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>
- <% @import.unsaved_items.each do |item| %>
+ </thead>
+ <tbody>
+ <% @import.unsaved_items.each do |item| %>
<tr>
<td><%= item.position %></td>
<td><%= simple_format_without_paragraph item.message %></td>
</tr>
- <% end %>
+ <% end %>
+ </tbody>
</table>
<% end %>