Files
danbooru/app/views/counts/posts.html.erb
2022-11-02 13:46:46 +01:00

21 lines
610 B
Plaintext

<% page_title "Post Counts" %>
<%= render "posts/partials/common/secondary_links" %>
<div id="c-counts">
<div id="a-posts">
<h1>Post Counts</h1>
<%= search_form_for(posts_counts_path) do |f| %>
<%= f.input :tags, label: "Tags", input_html: { value: params[:tags], data: { autocomplete: "tag-query" }, name: "tags" } %>
<%= f.submit "Search" %>
<% end %>
Post count for <%= link_to params[:tags].present? ? params[:tags] : "/posts", posts_path(:tags => params[:tags]) %>:
<% if @count.nil? %>
timed out
<% else %>
<%= @count %>
<% end %>
</div>
</div>