Files
danbooru/app/views/explore/posts/missed_searches.html.erb
NamelessContributor c762e3ddbc Add data-is-deprecated attribute to tags
Allows using custom CSS to highlight deprecated tags, fixes #5110
2022-05-10 17:17:15 +02:00

33 lines
1014 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 %>" data-is-deprecated=<%= Tag.find_by_name(search)&.is_deprecated? %>>
<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>