Sha256: dd889f8e41c056915152015cbe183669048dcd177d27896d49b054521302d12c
Contents?: true
Size: 1.2 KB
Versions: 6
Compression:
Stored size: 1.2 KB
Contents
<% content_for :page_title do %> <%= Spree.t(:taxon_edit) %> <% end %> <% content_for :page_actions do %> <li> <%= button_link_to Spree.t(:back_to_taxonomies_list), spree.admin_taxonomies_path, :icon => 'arrow-left' %> </li> <% end %> <%# Because otherwise the form would attempt to use to_param of @taxon %> <% form_url = admin_taxonomy_taxon_path(@taxonomy.id, @taxon.id) %> <%= form_for [:admin, @taxonomy, @taxon], :method => :put, :url => form_url, :html => { :multipart => true } do |f| %> <%= render 'form', :f => f %> <div class="form-buttons filter-actions" data-hook="buttons"> <%= button Spree.t('actions.update'), 'refresh' %> <%= button_link_to Spree.t('actions.cancel'), edit_admin_taxonomy_url(@taxonomy), :icon => "remove" %> </div> <% end %> <% content_for :head do %> <%= javascript_tag do -%> $(document).ready(function() { var field = $('#permalink_part'), target = $('#permalink_part_display'), permalink_part_default = target.text().trim(); target.text(permalink_part_default + field.val()); field.on('keyup blur', function () { target.text(permalink_part_default + $(this).val()); }); }); <% end -%> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems