Sha256: 7214c8ecf1b0c79210c40e9496bd02efd21f2796f8aaa83cce206b29941df832
Contents?: true
Size: 695 Bytes
Versions: 17
Compression:
Stored size: 695 Bytes
Contents
<%%= error_messages_for :<%= singular_name %> -%> <%% form_for [:admin, @<%= singular_name %>] do |f| -%> <% attributes.each_with_index do |attribute, index| %> <div class='field'> <%%= f.label :<%= attribute.name %> -%> <% if attribute.field_type.to_s == "text_area" -%> <%%= f.text_area :<%= attribute.name %>, :rows => 20, :cols => 140, :class => 'wymeditor' -%> <% else -%> <%%= f.<%= attribute.field_type -%> :<%= attribute.name -%><%= ", :class => 'larger'" if (index == 0 && attribute.field_type == :text_field) -%> -%> <% end -%> </div> <% end %> <%%= render :partial => "/shared/admin/form_actions", :locals => {:f => f, :continue_editing => false} %> <%% end -%>
Version data entries
17 entries across 17 versions & 2 rubygems