Files
danbooru/app/views/wiki_pages/_sidebar.html.erb

29 lines
1.0 KiB
Plaintext

<% content_for(:sidebar) do %>
<%= render "posts/partials/index/blacklist" %>
<%= render "wiki_pages/recent_changes" %>
<% if @wiki_page.present? && @wiki_page.title.present? %>
<h2>Options</h2>
<ul>
<% unless @wiki_page.is_meta_wiki? %>
<% if @wiki_page.tag.present? %>
<li><%= link_to "Tag History", tag_versions_path(search: { tag_id: @wiki_page.tag&.id }) %></li>
<% end %>
<li><%= link_to "Post History", post_versions_path(search: { changed_tags: @wiki_page.title }) %></li>
<% end %>
<% if @wiki_page.id.present? %>
<li><%= link_to "Wiki History", wiki_page_versions_path(search: { wiki_page_id: @wiki_page.id }) %></li>
<% end %>
<% if Danbooru.config.forum_enabled?.to_s.truthy? %>
<li><%= link_to "Discussions", forum_posts_path(search: { linked_to: @wiki_page.title }) %></li>
<% end %>
<li><%= link_to "What Links Here", wiki_pages_path(search: { linked_to: @wiki_page.title }) %></li>
</ul>
<% end %>
<% end %>