Sha256: 9b2139c4e6459cdb8c6404a4db32479a42443d3825d2d0a2d14784e79b889108
Contents?: true
Size: 1.45 KB
Versions: 7
Compression:
Stored size: 1.45 KB
Contents
<%= form_for @schedule do |f| %> <table> <tr> <td><%= f.label :name %></td> <td><%= f.text_field :name %></td> </tr> <tr> <td><%= f.hd_label :birthday %></td> <td><%= f.hd_picker :birthday %></td> </tr> <tr> <td><%= f.hd_label :lunchtime %></td> <td><%= f.hd_picker :lunchtime %></td> </tr> <tr> <td><%= f.hd_label :apocalypse %></td> <td><%= f.hd_picker :apocalypse %></td> </tr> <tr> <td><%= f.hd_label :alarm_setting %></td> <td><%= f.hd_picker :alarm_setting, { :time_format => "HH:mm:ss", hd_opts: {:hour_grid => "12"} }, :w_seconds %></td> </tr> <tr> <td><%= f.hd_label :suppertime %></td> <td><%= f.hd_picker :suppertime, { :time_format => "h:mm tt" }, :lc_merid %></td> </tr> <tr> <td><%= f.hd_label :beer_oclock, "Time for beer yet?" %></td> <td><%= f.time_picker :beer_oclock, { :time_format => "h:mm TT" }, :uc_merid %></td> </tr> <tr> <td><%= f.hd_label :christmas %></td> <td><%= f.hd_picker :christmas, { :date_format => "MM d, yy" }, :full_month %></td> </tr> <tr> <td><%= f.hd_label :easter %></td> <td><%= f.date_picker :easter, { :date_format => "DD MM d, yy", html: { style: "width: 200px;" } }, :full_day_month %></td> </tr> <tr> <td><%= f.hd_label :epoch %></td> <td><%= f.datetime_picker :epoch, { date_format: "m/d/yy", time_format: "HH:mm:ss", hd_opts: {alt_time_format: "HH:mm:ss" } }, :datetime_w_seconds %></td> </tr> <tr> <td></td> </tr> <tr> <td><%= f.submit %></td> </tr> </table> <% end %>
Version data entries
7 entries across 7 versions & 1 rubygems