Sha256: 3f1af2d357a00de1b1434810a224d0a2c117a08026fdc0a7c9823dd6656168de
Contents?: true
Size: 572 Bytes
Versions: 5
Compression:
Stored size: 572 Bytes
Contents
<h1><%= link_to t('feedback_review_for', :review => @review.title ), admin_reviews_path %></h1> <table class="index"> <tr> <th><%= t('date_') %></th> <th><%= t('user') %></th> <th><%= t('stars') %></th> <th></th> </tr> <% @collection.each do |feedback| %> <tr id="<%= dom_id(feedback) %>"> <td><%= l feedback.created_at %></td> <td><%= feedback.user.try(:login) || "anonimus" %></td> <td><%= feedback.rating %></td> <td class="actions"> <%= link_to_delete feedback %> </td> </tr> <% end %> </table>
Version data entries
5 entries across 5 versions & 1 rubygems