Fix #5261: empty wiki pages no longer show tag options.

This commit is contained in:
evazion
2022-11-22 22:25:56 -06:00
parent c8e3f957da
commit 5102e9d4e3

View File

@@ -2,7 +2,7 @@
<%= render "posts/partials/index/blacklist" %>
<%= render "wiki_pages/recent_changes" %>
<% if @wiki_page.present? && !@wiki_page.new_record? %>
<% if @wiki_page.present? && @wiki_page.title.present? %>
<h2>Options</h2>
<ul>
@@ -11,22 +11,18 @@
<li><%= link_to "Tag History", tag_versions_path(search: { tag_id: @wiki_page.tag&.id }) %></li>
<% end %>
<% if @wiki_page.title.present? %>
<li><%= link_to "Post History", post_versions_path(search: { changed_tags: @wiki_page.title }) %></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? && @wiki_page.title.present? %>
<% if Danbooru.config.forum_enabled?.to_s.truthy? %>
<li><%= link_to "Discussions", forum_posts_path(search: { linked_to: @wiki_page.title }) %></li>
<% end %>
<% if @wiki_page.title.present? %>
<li><%= link_to "What Links Here", wiki_pages_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 %>