Redmine 4.1.1
This commit is contained in:
parent
33e7b881a5
commit
3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions
|
@ -1,30 +1,34 @@
|
|||
<h2><%= l(:label_import_issues) %></h2>
|
||||
<h2><%= import_title %></h2>
|
||||
|
||||
<%= form_tag(import_settings_path(@import), :id => "import-form") do %>
|
||||
<fieldset class="box tabular">
|
||||
<legend><%= l(:label_options) %></legend>
|
||||
<p>
|
||||
<label><%= l(:label_fields_separator) %></label>
|
||||
<label for="import_settings_separator"><%= l(:label_fields_separator) %></label>
|
||||
<%= select_tag 'import_settings[separator]',
|
||||
options_for_select([[l(:label_comma_char), ','], [l(:label_semi_colon_char), ';']], @import.settings['separator']) %>
|
||||
</p>
|
||||
<p>
|
||||
<label><%= l(:label_fields_wrapper) %></label>
|
||||
<label for="import_settings_wrapper"><%= l(:label_fields_wrapper) %></label>
|
||||
<%= select_tag 'import_settings[wrapper]',
|
||||
options_for_select([[l(:label_quote_char), "'"], [l(:label_double_quote_char), '"']], @import.settings['wrapper']) %>
|
||||
</p>
|
||||
<p>
|
||||
<label><%= l(:label_encoding) %></label>
|
||||
<label for="import_settings_encoding"><%= l(:label_encoding) %></label>
|
||||
<%= select_tag 'import_settings[encoding]', options_for_select(Setting::ENCODINGS, @import.settings['encoding']) %>
|
||||
</p>
|
||||
<p>
|
||||
<label><%= l(:setting_date_format) %></label>
|
||||
<label for="import_settings_date_format"><%= l(:setting_date_format) %></label>
|
||||
<%= select_tag 'import_settings[date_format]', options_for_select(date_format_options, @import.settings['date_format']) %>
|
||||
</p>
|
||||
<br>
|
||||
<p>
|
||||
<label for="import_settings_notifications"><%= l(:label_import_notifications) %></label>
|
||||
<%= hidden_field_tag 'import_settings[notifications]', '0', :id => nil %>
|
||||
<%= check_box_tag 'import_settings[notifications]', '1', "#{@import.settings['notifications']}" == '1' %>
|
||||
</p>
|
||||
</fieldset>
|
||||
<p><%= submit_tag l(:label_next).html_safe + " »".html_safe, :name => nil %></p>
|
||||
<% end %>
|
||||
|
||||
<% content_for :sidebar do %>
|
||||
<%= render :partial => 'issues/sidebar' %>
|
||||
<% end %>
|
||||
<%= render :partial => "#{import_partial_prefix}_sidebar" %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue