Files
danbooru/app/views/counts/posts.html.erb
evazion 6a984de3d5 views: refactor page titles.
Refactor `page_title` helper to automatically include site name.
2020-01-25 01:52:18 -06:00

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>