Files
danbooru/app/views/post_appeals/index.html.erb
2013-08-04 11:34:20 -04:00

33 lines
895 B
Plaintext

<div id="c-post-appeals">
<div id="a-index">
<h1>Appeals</h1>
<%= render "search" %>
<table width="100%" class="striped">
<thead>
<tr>
<th width="1%">Post</th>
<th width="10%">Creator</th>
<th>Reason</th>
<th width="15%">Date</th>
</tr>
</thead>
<tbody>
<% @post_appeals.each do |post_appeal| %>
<tr>
<td><%= PostPresenter.preview(post_appeal.post, :tags => "status:any") %></td>
<td><%= link_to_user post_appeal.creator %></td>
<td><%= format_text post_appeal.reason %></td>
<td><%= compact_time post_appeal.updated_at %></td>
</tr>
<% end %>
</tbody>
</table>
<%= numbered_paginator(@post_appeals) %>
</div>
</div>
<% content_for(:page_title) do %>
Appeals - <%= Danbooru.config.app_name %>
<% end %>