Sha256: 87e9fe383fc9f3368eaa0ab81656f00da341ff34e1d639f58f395c9e077f151b

Contents?: true

Size: 1.5 KB

Versions: 4

Compression:

Stored size: 1.5 KB

Contents

<%
  # headmin/forms/date_range
  #
  # ==== Required parameters
  # * +form+ - Form object
  # * +start+ - Hash with all options for the start date input (:attribute is required)
  # * +end+ - Hash with all options for the end date input (:attribute is required)
  #
  # ==== Optional parameters
  # * +append+ - Display as input group with text on the right-hand side
  # * +float+ - Use floating labels. Defaults to false
  # * +hint+ - Informative text to assist with data input. HTML markup is allowed.
  # * +label+ - Text to display inside label tag. Defaults to the attribute name. Set to false if you don"t want to show a label.
  # * +plaintext+ - Render input as plain text.
  # * +prepend+ - Display as input group with text on the left-hand side
  # * +wrapper+ - Hash with all options for the surrounding html tag
  #
  # ==== References
  # https://headmin.dev/docs/forms/date_range
  # https://developer.mozilla.org/en-US/docs/Web/HTML/Element/date
  # https://apidock.com/rails/ActionView/Helpers/FormHelper/date_field
  #
  # ==== Examples
  #   Basic version
  #   <%= form_with do |form| %#>
  #     <%= render 'headmin/forms/date_range', form: form, start: {attribute: :start_date}, end: {attribute: :end_date} %#>
  #   <% end %#>

  date_range = Headmin::Form::DateRangeView.new(local_assigns)
%>

<div class="row">
  <div class="col">
    <%= render 'headmin/forms/date', date_range.start_options %>
  </div>
  <div class="col">
    <%= render 'headmin/forms/date', date_range.end_options %>
  </div>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
headmin-0.5.2 app/views/headmin/forms/_date_range.html.erb
headmin-0.4.2 app/views/headmin/forms/_date_range.html.erb
headmin-0.4.1 app/views/headmin/forms/_date_range.html.erb
headmin-0.4.0 app/views/headmin/forms/_date_range.html.erb