25 lines
467 B
Plaintext
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>
|