Sha256: 1a72a0a0481be0ed4fce236f7001e9e9df504e9d563e0a1de008f75ca75b4b06
Contents?: true
Size: 592 Bytes
Versions: 2
Compression:
Stored size: 592 Bytes
Contents
<% content_for :page_title do %> <%= Spree.t(:listing_favorite_products_users) %> <% end %> <%= paginate @users %> <% if @users.any? %> <table class="index" id="listing_favorite_products_users"> <thead> <tr data-hook="admin_products_index_headers"> <th>Email</th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <td> <%= user.email %> </tr> <% end %> </tbody> </table> <% else %> <div class="no-objects-found"> <%= Spree.t(:no_results) %> </div> <% end %> <%= paginate @users %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_favorite_products-3.2.0 | app/views/spree/admin/favorite_products/users.html.erb |
spree_favorite_products-3.0.0 | app/views/spree/admin/favorite_products/users.html.erb |