14 lines
411 B
Plaintext
14 lines
411 B
Plaintext
<% page_title "Post Counts" %>
|
|
<%= render "posts/partials/common/secondary_links" %>
|
|
|
|
<div id="c-counts">
|
|
<div id="a-posts">
|
|
Post count for <%= link_to params[:tags].present? ? params[:tags] : "/posts", posts_path(:tags => params[:tags]) %>:
|
|
<% if @count == (Danbooru.config.blank_tag_search_fast_count || 1_000_000) %>
|
|
timed out
|
|
<% else %>
|
|
<%= @count %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|