Files
danbooru/app/views/favorites/index.html.erb
2013-09-06 10:32:54 -04:00

39 lines
969 B
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 %>
<% if CurrentUser.is_gold? %>
<section id="mode-box">
<%= render "posts/partials/index/mode_menu" %>
</section>
<% end %>
<section id="blacklist-box">
<h1>Blacklisted</h1>
<ul id="blacklist-list">
</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>
<% content_for(:page_title) do %>
Favorites - <%= @user.pretty_name %> - <%= Danbooru.config.app_name %>
<% end %>
<%= render "posts/partials/common/secondary_links" %>
</div>
</div>