Sha256: ec4064f50a2b210045159754c9ec49a880f60088c065d48d50432d6c1aa4f6b6
Contents?: true
Size: 1.76 KB
Versions: 7
Compression:
Stored size: 1.76 KB
Contents
<div data-hook="admin_inside_taxon_form" class="row"> <div class="alpha five columns"> <%= f.field_container :name do %> <%= f.label :name, Spree.t(:name) %> <span class="required">*</span><br /> <%= text_field :taxon, :name, :class => 'fullwidth' %> <%= error_message_on :taxon, :name, :class => 'fullwidth title' %> <% end %> <%= f.field_container :permalink_part do %> <%= f.label :permalink_part, Spree.t(:permalink) %> <span class="required">*</span><br /> <%= text_field_tag :permalink_part, @permalink_part, :class => 'fullwidth' %><br /> <span class="info" id="permalink_part_display"> <%= @taxon.permalink.split('/')[0...-1].join('/') + '/' %> </span> <% end %> <%= f.field_container :icon do %> <%= f.label :icon, Spree.t(:icon) %><br /> <%= f.file_field :icon %> <% end %> </div> <div class="omega seven columns"> <%= f.field_container :description do %> <%= f.label :description, Spree.t(:description) %><br /> <%= f.text_area :description, :class => 'fullwidth', :rows => 6 %> <% end %> </div> <div class="twelve columns alpha omega"> <%= f.field_container :meta_title do %> <%= f.label :meta_title, Spree.t(:meta_title) %><br /> <%= f.text_field :meta_title, :class => 'fullwidth', :rows => 6 %> <% end %> <%= f.field_container :meta_description do %> <%= f.label :meta_description, Spree.t(:meta_description) %><br /> <%= f.text_field :meta_description, :class => 'fullwidth', :rows => 6 %> <% end %> <%= f.field_container :meta_keywords do %> <%= f.label :meta_keywords, Spree.t(:meta_keywords) %><br /> <%= f.text_field :meta_keywords, :class => 'fullwidth', :rows => 6 %> <% end %> </div> </div>
Version data entries
7 entries across 7 versions & 1 rubygems