<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. See doc/COPYRIGHT.rdoc for more details. ++#%>
<%= l('timelines.filter.timeline') %>

<%= f.label :name %> <%= f.text_field :name, :required => true, :size => 60, :class => "twoBlocks" %> <%= hidden_field_tag 'timeline[options][exist]' %>

<%= label_tag :timeline_options_hide_chart, l('timelines.filter.hide_chart') %> <%= check_box_tag("timeline[options][hide_chart]", :yes, timeline.options["hide_chart"].present?) %>

<%= label_tag 'timeline_options_zoom_factor', l("timelines.filter.zoom") %> <%= select("timeline[options]", :zoom_factor, filter_select_i18n_array_with_index_and_none( timeline.available_zoom_factors, 'timelines.zoom.'), {:selected => timeline.selected_zoom_factor}, {:multiple => false, :size => 1}) %>

<%= label_tag 'timeline_options_initial_outline_expansion', l("timelines.filter.outline") %> <%= select("timeline[options]", :initial_outline_expansion, filter_select_i18n_array_with_index_and_none( timeline.available_initial_outline_expansions, 'timelines.outlines.'), {:selected => timeline.selected_initial_outline_expansion}, {:multiple => false, :size => 1}) %>

<%= label_tag :timeline_options_display_timeframe, l('timelines.filter.timeframe') %> <%= l('timelines.filter.timeframe_start') %> <%= text_field_tag "timeline[options][timeframe_start]", timeline.options["timeframe_start"], :size => 10 %> <%= calendar_for('timeline_options_timeframe_start') %> <%= l('timelines.filter.timeframe_end') %> <%= text_field_tag "timeline[options][timeframe_end]", timeline.options["timeframe_end"], :size => 10 %> <%= calendar_for('timeline_options_timeframe_end') %>

<%= label_tag 'timeline_options_columns', l("timelines.filter.columns") %> <%= select("timeline[options]", :columns, internationalized_columns_select(timeline.available_columns), {:selected => timeline.selected_columns}, {:multiple => true, :size => 12}) %>

<%= label_tag :timeline_options_project_sort, l('timelines.filter.sort.project_sortation') %> <%= select("timeline[options]", :project_sort, [[l('timelines.filter.sort.date'), 0], [l('timelines.filter.sort.alphabet'), '1']], {:selected => timeline.options['project_sort']}, {:multiple => false, :size => 1}) %>