2018-01-18 11:03:31 +01:00
|
|
|
= render partial: 'users/description/champs/date', locals: { champ: champ }
|
2016-06-22 11:25:41 +02:00
|
|
|
|
2018-01-18 11:03:31 +01:00
|
|
|
%br
|
|
|
|
%select.form-control{ name: "time_hour['#{champ.id}']", style: 'width:70px;display:inline;', id: "time_hour_#{champ.id}" }
|
2016-06-22 11:25:41 +02:00
|
|
|
- (0..23).each do |num|
|
|
|
|
- num = "%.2i" %num
|
2017-04-06 19:10:25 +02:00
|
|
|
%option{ value: num, selected: (:selected if champ.same_hour?(num)) }
|
2016-06-22 11:25:41 +02:00
|
|
|
= num
|
|
|
|
h
|
2018-01-18 11:03:31 +01:00
|
|
|
%select.form-control{ name: "time_minute['#{champ.id}']", style: 'width:70px;display:inline;', id: "time_minute_#{champ.id}" }
|
2016-06-22 11:25:41 +02:00
|
|
|
- (0..59).each do |num|
|
|
|
|
- num = "%.2i" %num
|
|
|
|
- if num.to_i%5 == 0
|
2017-04-06 19:10:25 +02:00
|
|
|
%option{ value: num, selected: (:selected if champ.same_minute?(num)) }
|
2016-06-22 11:25:41 +02:00
|
|
|
= num
|
2017-04-04 15:27:04 +02:00
|
|
|
min
|