Sha256: debdd7f715a769328e9697b3a45b37f851011ec6f2cb01998afa19fc6261aeb1

Contents?: true

Size: 1.15 KB

Versions: 11

Compression:

Stored size: 1.15 KB

Contents

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

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

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

<div id="new_property"></div>

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

<table class="index" id='listing_properties' data-hook>
  <thead>
    <tr data-hook="listing_properties_header">
      <th><%= t(:name) %></th>
      <th><%= t(:presentation) %></th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <% @properties.each do |property| %>
      <tr id="<%= dom_id property %>" data-hook="listing_properties_row">
        <td><%= property.name %></td>
        <td><%= property.presentation %></td>
        <td class="actions">
          <%= link_to_edit(property, :class => 'edit') %>
          &nbsp;
          <%= link_to_delete(property) %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
spree_core-1.0.7 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.6 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.4 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.3 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.2 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.1 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.0 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.0.rc4 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.0.rc3 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.0.rc2 app/views/spree/admin/properties/index.html.erb
spree_core-1.0.0.rc1 app/views/spree/admin/properties/index.html.erb