This commit is contained in:
Toks
2014-11-12 18:46:12 -05:00
parent 2ee548dc85
commit 4e5a1d43d3
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
<tbody>
<% @commentaries.each do |commentary| %>
<tr>
<td><%= PostPresenter.preview(commentary.post) %></td>
<td><%= PostPresenter.preview(commentary.post, :tags => "status:any") %></td>
<td>
<h3><%= h(commentary.original_title) %></h3>
<div class="prose">

View File

@@ -1,7 +1,7 @@
<h1>Ban Post</h1>
<div>
<%= PostPresenter.preview(@post) %>
<%= PostPresenter.preview(@post, :tags => "status:any") %>
</div>
<%= form_tag(ban_moderator_post_post_path(@post), :style => "clear: both;", :class => "simple_form") do %>

View File

@@ -1,7 +1,7 @@
<h1>Delete Post</h1>
<div>
<%= PostPresenter.preview(@post) %>
<%= PostPresenter.preview(@post, :tags => "status:any") %>
</div>
<%= form_tag(delete_moderator_post_post_path, :style => "clear: both;", :class => "simple_form") do %>