mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-30 12:19:38 +00:00
Patch by Felix Schäfer. git-svn-id: http://svn.redmine.org/redmine/trunk@21390 e93f8b46-1217-0410-a6f0-8f06a7374b81
14 lines
445 B
Plaintext
14 lines
445 B
Plaintext
<h2><%= import_title %></h2>
|
|
|
|
<%= form_tag(imports_path, :multipart => true) do %>
|
|
<%= hidden_field_tag 'type', @import.type %>
|
|
<%= hidden_field_tag 'project_id', params[:project_id] %>
|
|
<fieldset class="box">
|
|
<legend><%= l(:label_select_file_to_import) %> (CSV)</legend>
|
|
<p>
|
|
<%= file_field_tag 'file' %>
|
|
</p>
|
|
</fieldset>
|
|
<p><%= submit_tag l(:label_next).html_safe + " »".html_safe, :name => nil %></p>
|
|
<% end %>
|