Sha256: c8e6c3195baae5504c18076746a1a55d9823dfcec02e792eed33f812723cc405

Contents?: true

Size: 1.06 KB

Versions: 9

Compression:

Stored size: 1.06 KB

Contents

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

<div class='toolbar'>
  <ul class='actions'>
    <li id="new_prop_link">
      <%= button_link_to_remote t("new_property"),  {
                         :url => new_admin_property_url, 
                         :method => :get,
                         :update => "properties"}, :icon => 'add' %>
    </li>
  </ul>
  <br class='clear' />
</div>

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

<div id="properties"></div>

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

<table class="index">
  <thead>
    <tr>
      <th><%= t("name") %></th>
      <th><%= t("presentation") %></th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <% @properties.each do |property| %>
      <tr id="<%= dom_id property %>">
        <td><%= property.name %></td>
        <td><%= property.presentation %></td>
        <td class="actions">
          <%= link_to_edit(property) %>
          &nbsp;
          <%= link_to_delete(property) %>
        </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/properties/index.html.erb
spree-0.11.3 vendor/extensions/theme_default/app/views/admin/properties/index.html.erb
spree-0.11.2 vendor/extensions/theme_default/app/views/admin/properties/index.html.erb
spree-0.11.1 vendor/extensions/theme_default/app/views/admin/properties/index.html.erb
spree-0.11.0 vendor/extensions/theme_default/app/views/admin/properties/index.html.erb
spree-0.10.2 vendor/extensions/theme_default/app/views/admin/properties/index.html.erb
spree-0.10.1 vendor/extensions/theme_default/app/views/admin/properties/index.html.erb
spree-0.10.0 vendor/extensions/theme_default/app/views/admin/properties/index.html.erb
spree-0.10.0.beta vendor/extensions/theme_default/app/views/admin/properties/index.html.erb