Files
danbooru/app/views/posts/partials/index/_related.html.erb
2013-03-19 23:11:58 +11:00

13 lines
376 B
Plaintext

<section id="related-box">
<h1>Related</h1>
<ul id="related-list">
<% if @post_set.has_deleted? %>
<li><%= link_to "Deleted posts", posts_path(:tags => "#{params[:tags]} status:deleted") %></li>
<% end %>
<% if @post_set.is_tag_subscription? %>
<li><%= link_to "Edit subscriptions", tag_subscriptions_path %></li>
<% end %>
</ul>
</section>