Sha256: 85f5e88489d86499eb3063bff8e325adb5cfbcc50cad557f8c8d85653a2c2a81

Contents?: true

Size: 1 KB

Versions: 9

Compression:

Stored size: 1 KB

Contents

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

<div class='toolbar'>
  <ul class='actions'>
    <li id="new_proto_link">
      <%= button_link_to_remote t("new_prototype"), {
                         :url => new_admin_prototype_url, 
                         :method => :get,
                         :update => "prototypes"}, :icon => 'add' %>
    </li>
  </ul>
  <br class='clear' />
</div>


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

<%= image_tag "spinner.gif", :plugin=>"spree", :style => "display:none", :id => 'busy_indicator' %>
<div id="prototypes"></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-0.11.4 vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb
spree-0.11.3 vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb
spree-0.11.2 vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb
spree-0.11.1 vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb
spree-0.11.0 vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb
spree-0.10.2 vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb
spree-0.10.1 vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb
spree-0.10.0 vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb
spree-0.10.0.beta vendor/extensions/theme_default/app/views/admin/prototypes/index.html.erb