37 lines
855 B
Plaintext
37 lines
855 B
Plaintext
<div id="c-pools">
|
|
<div id="a-index">
|
|
<table class="striped" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th width="5%"></th>
|
|
<th width="70%">Name</th>
|
|
<th width="25%">Creator</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @pools.each do |pool| %>
|
|
<%= content_tag(:tr, :id => "pool-#{pool.id}") do %>
|
|
<td>
|
|
|
|
</td>
|
|
<td>
|
|
<%= link_to h(pool.name), pool_path(pool) %>
|
|
</td>
|
|
<td>
|
|
<%= link_to h(pool.creator.name), user_path(pool.creator) %>
|
|
</td>
|
|
<% end %>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<%= numbered_paginator(@pools) %>
|
|
|
|
<%= render "secondary_links" %>
|
|
</div>
|
|
</div>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Pools - <%= Danbooru.config.app_name %>
|
|
<% end %>
|