summaryrefslogtreecommitdiffstats
path: root/app/views/imports/new.html.erb
blob: cfb4a58f71c31bc9273111a3d08af6eb7f1bfc43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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 %>