Files
danbooru/app/views/forum_topics/index.html.erb
albert 668fbab77a * Updated gemfile
* Added forum post/topic unit tests
* Added forum post/topic controller tests
2011-01-12 18:00:07 -05:00

25 lines
467 B
Plaintext

<h1>Forum</h1>
<%= render "search" %>
<table>
<thead>
<tr>
<th>Creator</th>
<th>Title</th>
<th>Updated by</th>
<th>Updated at</th>
</tr>
</thead>
<tbody>
<% @forum_topics.each do |topic| %>
<tr>
<td><%= topic.creator.name %></td>
<td><%= topic.title %></td>
<td><%= topic.updater.name %></td>
<td><%= compact_time topic.updated_at %></td>
</tr>
<% end %>
</tbody>
</table>