Sha256: 0945fe6c0b2b1deda2aa36cd321ac42aff53dd333a0f503b4a5f2bf4f83dfe3c
Contents?: true
Size: 965 Bytes
Versions: 12
Compression:
Stored size: 965 Bytes
Contents
<%= form_with(model: manifestation_custom_property, local: true) do |form| %> <% if manifestation_custom_property.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(manifestation_custom_property.errors.count, "error") %> prohibited this manifestation_custom_property from being saved:</h2> <ul> <% manifestation_custom_property.errors.full_messages.each do |message| %> <li><%= message %></li> <% end %> </ul> </div> <% end %> <div class="form-group"> <%= form.label :name %> <%= form.text_field :name, class: 'form-control' %> </div> <div class="form-group"> <%= form.label :display_name %> <%= form.text_area :display_name, class: 'form-control' %> </div> <div class="form-group"> <%= form.label :note %> <%= form.text_area :note, class: 'form-control' %> </div> <div class="actions"> <%= form.submit class: 'btn btn-primary' -%> </div> <% end %>
Version data entries
12 entries across 12 versions & 1 rubygems