From 5036478017faa01839caa8caa8e17dd52b5e6f4e Mon Sep 17 00:00:00 2001 From: Romano Licker Date: Fri, 28 Oct 2011 16:35:03 +0200 Subject: [PATCH] [#667] improved code readability --- app/views/timelog/_date_range.rhtml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/app/views/timelog/_date_range.rhtml b/app/views/timelog/_date_range.rhtml index d537d0a1..55ee4a2d 100644 --- a/app/views/timelog/_date_range.rhtml +++ b/app/views/timelog/_date_range.rhtml @@ -14,11 +14,20 @@ <%= radio_button_tag 'period_type', '2', @free_period, :onclick => 'Form.Element.enable("from");Form.Element.enable("to");Form.Element.disable("period");', :id => "period_type_interval" %> -<%= l(:label_date_from_to, - :start => ((label_tag "from", l(:description_date_from), :class => "hidden-for-sighted") + - text_field_tag('from', @from, :size => 10, :disabled => !@free_period) + calendar_for('from')), - :end => ((label_tag "to", l(:description_date_to), :class => "hidden-for-sighted") + - text_field_tag('to', @to, :size => 10, :disabled => !@free_period) + calendar_for('to'))) %> +<%= +l(:label_date_from_to, +  :start => ( +    label_tag("from", l(:description_date_from), :class => "hidden-for-sighted") + +    text_field_tag('from', @from, :size => 10, :disabled => !@free_period) + +    calendar_for('from') +  ), +  :end => ( +    label_tag("to", l(:description_date_to), :class => "hidden-for-sighted") + +    text_field_tag('to', @to, :size => 10, :disabled => !@free_period) + +    calendar_for('to') +  ) +) +%>