Tag.category_for looked up a tag's category in the Redis cache. This was only used in a few places (in related tags, and on the popular/missed search pages). Get rid of this method so we can work towards getting rid of caching tag categories in Redis.
33 lines
945 B
Plaintext
33 lines
945 B
Plaintext
<% page_title "Missed Searches" %>
|
|
<%= render "posts/partials/common/secondary_links" %>
|
|
|
|
<div id="c-explore-posts">
|
|
<div id="a-missed-searches">
|
|
<h1>Missed Searches</h1>
|
|
<p>Over the past seven days.</p>
|
|
|
|
<table class="striped" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th width="80%">Tags</th>
|
|
<th width="10%">Wiki</th>
|
|
<th width="10%" style="text-align: right;">Count</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @missed_searches.each do |search, count| %>
|
|
<tr class="tag-type-<%= Tag.find_by_name(search)&.category.to_i %>">
|
|
<td><%= link_to search, posts_path(tags: search) %></td>
|
|
<td>
|
|
<% unless WikiPage.titled(search).exists? %>
|
|
N
|
|
<% end %>
|
|
</td>
|
|
<td style="text-align: right;"><%= count.to_i %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|