Sha256: 166bbc9b3c736ed67bdc180d740a8bbad9b0896527046af2fe72d2301a5cbbe0
Contents?: true
Size: 1.47 KB
Versions: 4
Compression:
Stored size: 1.47 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.date_picker :birthday %></td> </tr> <tr> <td><%= f.hd_label :lunchtime %></td> <td><%= f.time_picker :lunchtime %></td> </tr> <tr> <td><%= f.hd_label :apocalypse %></td> <td><%= f.datetime_picker :apocalypse %></td> </tr> <tr> <td><%= f.hd_label :alarm_setting %></td> <td><%= f.time_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.time_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.date_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
4 entries across 4 versions & 1 rubygems