Refactor tag_list_html, split_tag_list_html, and inline_tag_list_html to take the `show_extra_links` and `current_query` options explicitly, rather than implicitly relying on CurrentUser or taking `params[:tags]` from the template.
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
<div id="c-favorites">
|
|
<div id="a-index">
|
|
<aside id="sidebar">
|
|
<%= render "posts/partials/common/search", :path => favorites_path, :tags => @favorite_set.tag_string, :tags_dom_id => "tags" %>
|
|
|
|
<%= render "posts/partials/index/mode_menu" %>
|
|
|
|
<%= render "posts/partials/index/blacklist" %>
|
|
|
|
<section id="tag-box">
|
|
<h1>Tags</h1>
|
|
<%= @favorite_set.presenter.tag_list_html %>
|
|
</section>
|
|
|
|
<section id="related-box">
|
|
<h1>Related</h1>
|
|
<ul id="related-list">
|
|
<li><%= link_to "Deleted posts", posts_path(:tags => "#{@favorite_set.tag_string} status:deleted"), :rel => "nofollow" %></li>
|
|
|
|
<li><%= link_to "Random post", random_posts_path(:tags => @favorite_set.tag_string), :id => "random-post", :rel => "nofollow", :"data-shortcut" => "r" %></li>
|
|
</ul>
|
|
</section>
|
|
</aside>
|
|
|
|
<section id="content">
|
|
<h1>Favorites</h1>
|
|
|
|
<%= render "posts/partials/index/edit" %>
|
|
|
|
<div id="posts">
|
|
<%= @favorite_set.presenter.post_previews_html(self) %>
|
|
|
|
<%= sequential_paginator(@favorite_set.favorites) %>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "posts/partials/common/secondary_links" %>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Favorites - <%= @user.pretty_name %> - <%= Danbooru.config.app_name %>
|
|
<% end %>
|