remove category column from feedback listing

This commit is contained in:
albert
2013-02-23 12:58:37 -05:00
parent 09c5791309
commit c51a406083

View File

@@ -5,7 +5,6 @@
<table class="striped" width="100%">
<thead>
<tr>
<th width="10%">Category</th>
<th width="15%">User</th>
<th width="15%">Creator</th>
<th width="15%">When</th>
@@ -15,7 +14,6 @@
<tbody>
<% @user_feedbacks.each do |feedback| %>
<tr class="feedback-category-<%= feedback.category %>">
<td><%= feedback.category %></td>
<td><%= link_to feedback.user_name, user_path(feedback.user_id) %></td>
<td><%= link_to feedback.creator_name, user_path(feedback.creator_id) %></td>
<td><%= compact_time(feedback.created_at) %></td>