mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
Extend import controller to support arbitrary imports based on Import subclasses. This way, we may add other kinds of imports, by providing some views and a custom import class. This may also be done from within plugins. Patch by Gregor Schmidt. git-svn-id: http://svn.redmine.org/redmine/trunk@18145 e93f8b46-1217-0410-a6f0-8f06a7374b81
8 lines
264 B
Plaintext
8 lines
264 B
Plaintext
<ul id="saved-items">
|
|
<% saved_objects.each do |issue| %>
|
|
<li><%= link_to_issue issue %></li>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<p><%= link_to l(:label_issue_view_all), issues_path(:set_filter => 1, :status_id => '*', :issue_id => saved_objects.map(&:id).join(',')) %></p>
|