Sha256: 71be5550fde9cbd1d34ef96825b0df22d044b2d390f0166d7773d41ffa93efe1
Contents?: true
Size: 730 Bytes
Versions: 17
Compression:
Stored size: 730 Bytes
Contents
<%# # DateTime Form Partial This partial renders an input element for a datetime attribute. By default, the input is a text field that is augmented with [DateTimePicker]. ## Local variables: - `f`: A Rails form generator, used to help create the appropriate input fields. - `field`: An instance of [Administrate::Field::DateTime][1]. A wrapper around the DateTime value pulled from the database. [1]: http://www.rubydoc.info/gems/administrate/Administrate/Field/DateTime [DateTimePicker]: https://github.com/Eonasdan/bootstrap-datetimepicker %> <div class="field-unit__label"> <%= f.label field.attribute %> </div> <div class="field-unit__field"> <%= f.text_field field.attribute, class: "datetimepicker" %> </div>
Version data entries
17 entries across 17 versions & 2 rubygems