add post previews to user profile, improved ui for tag subscriptions
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
<h1>Tags</h1>
|
||||
<%= @post_set.presenter.tag_list_html(self) %>
|
||||
</section>
|
||||
|
||||
|
||||
<%= render "posts/partials/index/blacklist" %>
|
||||
<%= render "posts/partials/index/related" %>
|
||||
</aside>
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
<section id="related-box">
|
||||
<h1>Related Searches</h1>
|
||||
<h1>Related</h1>
|
||||
<ul id="related-list">
|
||||
<% if @post_set.has_deleted? %>
|
||||
<li><%= link_to "Deleted", posts_path(:tags => "#{params[:tags]} status:deleted") %></li>
|
||||
<li><%= link_to "Deleted posts", posts_path(:tags => "#{params[:tags]} status:deleted") %></li>
|
||||
<% end %>
|
||||
|
||||
<% if @post_set.is_tag_subscription? %>
|
||||
<li><%= link_to "Edit tag subscription", tag_subscriptions_path %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user