#2220 Remove redundant category column

This commit is contained in:
Toks
2014-11-26 19:26:28 -05:00
parent 6d420f722f
commit 82b3754d3b

View File

@@ -7,8 +7,7 @@
<table class="striped" width="100%">
<thead>
<tr>
<th width="80%">Tags</th>
<th width="10%">Category</th>
<th width="90%">Tags</th>
<th width="10%"></th>
</tr>
</thead>
@@ -17,7 +16,6 @@
<% saved_searches.each do |saved_search| %>
<tr id="saved-search-<%= saved_search.id %>">
<td><%= link_to saved_search.tag_query, posts_path(:tags => saved_search.tag_query) %></td>
<td><%= saved_search.category %></td>
<td>
<%= link_to "edit", edit_saved_search_path(saved_search) %> |
<%= link_to "delete", saved_search_path(saved_search), :method => :delete, :remote => true %>