Sha256: d9d0909ecf9f34ca74feda2b54d02499838a1aaf45a08c005e8d87d8e6f91205
Contents?: true
Size: 1.45 KB
Versions: 2
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.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 %></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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hot_date_rails-1.2.0 | spec/dummy/app/views/schedules/_form.html.erb |
hot_date_rails-1.0.0 | spec/dummy/app/views/schedules/_form.html.erb |