1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-30 12:19:38 +00:00
redmine/app/views/imports/new.html.erb
Marius Balteanu a2997b8f78 Remove sidebar with invalid query links from imports views (#36524).
Patch by Felix Schäfer.


git-svn-id: http://svn.redmine.org/redmine/trunk@21390 e93f8b46-1217-0410-a6f0-8f06a7374b81
2022-01-30 09:24:37 +00:00

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 + " &#187;".html_safe, :name => nil %></p>
<% end %>