##// END OF EJS Templates
Adjust i18n strings....
Adjust i18n strings. git-svn-id: http://svn.redmine.org/redmine/trunk@15562 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15180:483657f7c007
r15180:483657f7c007
Show More
show.html.erb
36 lines | 921 B | text/plain | TextLexer
Jean-Philippe Lang
Import issues from CSV file (#950)....
r14111 <h2><%= l(:label_import_issues) %></h2>
Jean-Philippe Lang
Fixes r15491....
r15114 <% if @import.saved_items.count > 0 %>
Jean-Philippe Lang
Adjust i18n strings....
r15180 <p><%= l(:notice_import_finished, :count => @import.saved_items.count) %>:</p>
Jean-Philippe Lang
Import issues from CSV file (#950)....
r14111
Jean-Philippe Lang
Adds assertions for import result....
r15115 <ul id="saved-items">
Jean-Philippe Lang
Import issues from CSV file (#950)....
r14111 <% @import.saved_objects.each do |issue| %>
<li><%= link_to_issue issue %></li>
<% end %>
</ul>
Jean-Philippe Lang
Always display the list of imported issues....
r15109 <% end %>
<% if @import.unsaved_items.count > 0 %>
Jean-Philippe Lang
Adjust i18n strings....
r15180 <p><%= l(:notice_import_finished_with_errors, :count => @import.unsaved_items.count, :total => @import.total_items) %>:</p>
Jean-Philippe Lang
Import issues from CSV file (#950)....
r14111
<table id="unsaved-items" class="list">
Jean-Philippe Lang
Adds assertions for import result....
r15115 <thead>
Jean-Philippe Lang
Import issues from CSV file (#950)....
r14111 <tr>
<th>Position</th>
<th>Message</th>
</tr>
Jean-Philippe Lang
Adds assertions for import result....
r15115 </thead>
<tbody>
<% @import.unsaved_items.each do |item| %>
Jean-Philippe Lang
Import issues from CSV file (#950)....
r14111 <tr>
<td><%= item.position %></td>
<td><%= simple_format_without_paragraph item.message %></td>
</tr>
Jean-Philippe Lang
Adds assertions for import result....
r15115 <% end %>
</tbody>
Jean-Philippe Lang
Import issues from CSV file (#950)....
r14111 </table>
<% end %>
<% content_for :sidebar do %>
<%= render :partial => 'issues/sidebar' %>
<% end %>