<% if @post.presenter.has_nav_links?(self) %>
<%= render "posts/partials/show/nav_links", :post => @post, :position => "top" %>
<% end %>
<%= render "posts/partials/show/notices", :post => @post %>
>
<%= @post.presenter.image_html(self) %>
<%= form_tag(mark_as_translated_post_path(@post), :class => "simple_form", :method => :put) do |f| %>
<%= hidden_field_tag :tags_query, params[:tags] %>
<%= hidden_field_tag :pool_id, params[:pool_id] %>
<%= check_box "post", "check_translation", :checked => @post.has_tag?("check_translation") %>
Check translation
<%= check_box "post", "partially_translated", :checked => @post.has_tag?("partially_translated") %>
Partially translated
<%= submit_tag "Mark as translated" %>
<% end %>
<% if @post.artist_commentary && @post.artist_commentary.any_field_present? %>
<% end %>
<% if @post.presenter.has_nav_links?(self) %>
<%= render "posts/partials/show/nav_links", :post => @post, :position => "bottom" %>
<% end %>
Comments
<% if CurrentUser.is_member? && @post.visible? %>
Edit
<% end %>
Share
<%= render "posts/partials/common/search", :path => posts_path, :tags => params[:tags], :tags_dom_id => "responsive-tags" %>
<%= @post.presenter.split_tag_list_html(self) %>
<% cache("p/#{@post.id}/n/#{@post.last_noted_at.to_i}") do %>
<%= render :partial => "notes/note", :collection => @post.notes.active %>
<% end %>
<% if CurrentUser.is_member? && @post.visible? %>
<%= render "posts/partials/show/edit", :post => @post %>
<% end %>
<%= render "posts/partials/show/share", :post => @post %>
<%= render "post_flags/new" %>
<%= render "post_appeals/new" %>
<%= render "pool_elements/new" %>
<%= render "favorite_groups/add_to_favgroup_dialog", :post => @post %>
<% content_for(:page_title) do %>
<%= @post.presenter.humanized_essential_tag_string %> - <%= Danbooru.config.app_name %>
<% end %>
<% content_for(:html_header) do %>
Before commenting, read the <%= link_to "how to comment guide", wiki_pages_path(:search => {:title => "howto:comment"}) %>.
<% end %> <%= render "comments/partials/index/list", :comments => @post.comments.visible(CurrentUser.user), :post => @post, :show_header => false %>