diff --git a/app/views/timelog/_date_range.rhtml b/app/views/timelog/_date_range.rhtml index 55ee4a2d8defeda5cc9a6569ef5c0cd2fbdeaba7..f42069cc543794f74ca4f627fd7fa6e4d6489e2d 100644 --- a/app/views/timelog/_date_range.rhtml +++ b/app/views/timelog/_date_range.rhtml @@ -16,16 +16,16 @@ <%= 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') - Â ) + :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') + ) ) %> </span>