Add artist commentary listing and search

related to #2084, fixes #2085
This commit is contained in:
Toks
2014-03-10 22:56:38 -04:00
parent 424d84661a
commit 2f3f401f3b
10 changed files with 130 additions and 2 deletions

View File

@@ -0,0 +1,38 @@
<div id="c-artist-commentaries">
<div id="a-index">
<h1>Artist Commentary</h1>
<table width="100%" class="striped">
<thead>
<tr>
<th width="1%">Post</th>
<th>Original</th>
<th>Translated</th>
</tr>
</thead>
<tbody>
<% @commentaries.each do |commentary| %>
<tr>
<td><%= PostPresenter.preview(commentary.post) %></td>
<td>
<h3><%= h(commentary.original_title) %></h3>
<%= h(commentary.original_description) %>
</td>
<td>
<h3><%= h(commentary.translated_title) %></h3>
<%= h(commentary.translated_description) %>
</td>
</tr>
<% end %>
</tbody>
</table>
<%= numbered_paginator(@commentaries) %>
<%= render "secondary_links" %>
</div>
</div>
<% content_for(:page_title) do %>
Artist Commentary - <%= Danbooru.config.app_name %>
<% end %>