Sha256: 732e0dc887f46589b20ae792436710e22f65d09f2f65eff4a8ecec6532b5d0db

Contents?: true

Size: 1.09 KB

Versions: 8

Compression:

Stored size: 1.09 KB

Contents

<%= render :partial => 'admin/shared/product_sub_menu' %>

<div class="toolbar" data-hook="toolbar">
  <ul class="actions">
    <li id="new_prototype_link">
      <%= button_link_to t(:new_prototype), new_admin_prototype_url, {:remote => true, :icon => 'add', 'data-update' => 'new_prototype', :id => 'new_prototype_link'} %>
    </li>
  </ul>
  <br class="clear" />
</div>


<h1><%= t(:prototypes) %></h1>

<%= image_tag 'spinner.gif', :plugin => 'spree', :style => 'display: none', :id => 'busy_indicator' %>
<div id="new_prototype"></div>

<table class="index" id='listing_prototypes' data-hook>
  <thead>
    <tr data-hook="prototypes_header">
      <th><%= t(:name) %></th>
      <th><%= t(:action) %></th>
    </tr>
  </thead>
  <tbody>
    <% @prototypes.each do |prototype| %>
      <tr id="<%= dom_id prototype %>" data-hook="prototypes_row">
        <td><%= prototype.name %></td>
        <td class="actions">
          <%= link_to_edit(prototype, :class => 'admin_edit_prototype') %>
          &nbsp;
          <%= link_to_delete(prototype) %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spree_core-0.70.7 app/views/admin/prototypes/index.html.erb
spree_core-0.70.6 app/views/admin/prototypes/index.html.erb
spree_core-0.70.5 app/views/admin/prototypes/index.html.erb
spree_core-0.70.4 app/views/admin/prototypes/index.html.erb
spree_core-0.70.3 app/views/admin/prototypes/index.html.erb
spree_core-0.70.2 app/views/admin/prototypes/index.html.erb
spree_core-0.70.1 app/views/admin/prototypes/index.html.erb
spree_core-0.70.0 app/views/admin/prototypes/index.html.erb