mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-24 19:20:13 +01:00
11 lines
355 B
Text
11 lines
355 B
Text
<h3><%= I18n.t 'data.import.map_title' %><h3>
|
|
<%= form_tag csv_import_data_path do %>
|
|
<% @labels.each do |l| %>
|
|
<%= label_tag l %>:
|
|
<%= select_tag(l, options_for_select(@headers) ) %>
|
|
<br>
|
|
<% end %>
|
|
<%= hidden_field_tag :file, @filename %>
|
|
<%= hidden_field_tag :import_to, @import_to %>
|
|
<%= submit_tag I18n.t("data.import.submit") %>
|
|
<% end %>
|