Sha256: 70506f16db8ba335eab25ea0d75389ee3f17ac6ae5b9ff47a54211290bb64d1c

Contents?: true

Size: 949 Bytes

Versions: 9

Compression:

Stored size: 949 Bytes

Contents

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

<div class='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'} %>
    </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">
  <thead>
    <tr>
      <th><%= t("name") %></th>
      <th><%= t("action") %></th>
    </tr>
  </thead>
  <tbody>
    <% @prototypes.each do |prototype| %>
      <tr id="<%= dom_id prototype %>">
        <td><%= prototype.name %></td>
        <td class="actions">
          <%= link_to_edit(prototype) %>
          &nbsp;
          <%= link_to_delete(prototype) %>
        </td>        
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
spree_core-0.30.2 app/views/admin/prototypes/index.html.erb
spree_core-0.40.4 app/views/admin/prototypes/index.html.erb
spree_core-0.40.3 app/views/admin/prototypes/index.html.erb
spree_core-0.40.2 app/views/admin/prototypes/index.html.erb
spree_core-0.40.1 app/views/admin/prototypes/index.html.erb
spree_core-0.40.0 app/views/admin/prototypes/index.html.erb
spree_core-0.30.1 app/views/admin/prototypes/index.html.erb
spree_core-0.30.0 app/views/admin/prototypes/index.html.erb
spree_core-0.30.0.beta1 app/views/admin/prototypes/index.html.erb