Sha256: 6061f326ef951e81ccb32e9d7117cc279b013062138d3b2b26f1dbe960f0accc
Contents?: true
Size: 717 Bytes
Versions: 8
Compression:
Stored size: 717 Bytes
Contents
<div class="field <%= options.delete(:field_class) %>"> <% if has_label %> <%- label_options[:class] << ' label' %> <%- label_options[:class] << ' required' if options.delete(:required) %> <%= label attribute_name, label_text, label_options %> <% end %> <div class="control"> <%- options[:class] << ' textarea' %> <%- options[:class] << ' is-danger' if errors[attribute_name].present? %> <%= text_area attribute_name, options %> </div> <%- if hint_text.present? %> <p class="help"><%= hint_text %></p> <%- end %> <%- if errors[attribute_name].present? %> <p class="help is-danger"><%= errors.full_messages_for(attribute_name).to_sentence %></p> <%- end %> </div>
Version data entries
8 entries across 8 versions & 1 rubygems