Sha256: ffa86ad02c79cef821691e4696e3df9f133d0b5bf317bd64ca39b9af43b9bc77

Contents?: true

Size: 529 Bytes

Versions: 13

Compression:

Stored size: 529 Bytes

Contents

<%
  # name: headmin/forms/fields/text
  #
  # ==== Options
  # * +form+ - Form object
  # * +name+ - Name for the field
  #
  # ==== Examples
  #   Basic version
  #   <%= render "headmin/forms/fields/text", form: group, name: :name do |field, attribute, label| %#>
  #     <%= render "headmin/forms/text", form: field, attribute: attribute, label: label %#>
  #   <% end %#>
%>

<%= render "headmin/forms/fields/base", form: form, field_type: :text, name: name do |field, label| %>
  <% yield field, :value, label %>
<% end %>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
headmin-0.6.3 app/views/headmin/forms/fields/_text.html.erb
headmin-0.6.2 app/views/headmin/forms/fields/_text.html.erb
headmin-0.6.1 app/views/headmin/forms/fields/_text.html.erb
headmin-0.6.0 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.9 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.8 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.7 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.6 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.5 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.4 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.3 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.1 app/views/headmin/forms/fields/_text.html.erb
headmin-0.5.0 app/views/headmin/forms/fields/_text.html.erb