Sha256: 8bdfae5bb2e57ecbe8299e15a060c8ce4a6d6d6735238d02537ec12195ed5199
Contents?: true
Size: 1.12 KB
Versions: 9
Compression:
Stored size: 1.12 KB
Contents
<% content_for :page_title do %> <%= I18n.t("spree.feedback_review_for", review: @review.title) %> <% end %> <% content_for :page_actions do %> <li><%= link_to I18n.t("spree.back_to_reviews"), admin_reviews_path %></li> <% end %> <% render 'spree/admin/shared/product_sub_menu' %> <% if @collection.any? %> <table class="index"> <colgroup> <col style="width: 30%;"> <col style="width: 20%;"> <col style="width: 20%;"> <col style="width: 17%;"> </colgroup> <thead> <tr> <th><%= I18n.t("spree.user") %></th> <th><%= I18n.t("spree.stars") %></th> <th><%= I18n.t("spree.date") %></th> <th class="actions"></th> </tr> </thead> <tbody> <%- @collection.each do |feedback| -%> <tr id="<%= dom_id(feedback) %>"> <td><%= l feedback.created_at %></td> <td><%= feedback.user.try(:login) || I18n.t("spree.anonymous") %></td> <td><%= feedback.rating %></td> <td class="actions"> <%= link_to_delete feedback, no_text: true %> </td> </tr> <% end %> </tbody> </table> <% else %> <div class="no-objects-found"> <%= I18n.t("spree.no_results") %> </div> <% end %>
Version data entries
9 entries across 9 versions & 1 rubygems