fixed styling for mod dash

This commit is contained in:
albert
2011-10-15 02:27:19 -04:00
parent ddd036ef97
commit b81e23bb32
7 changed files with 3901 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
<div id="c-mod-actions">
<div id="a-index">
<h1>Mod Actions</h1>
<table class="striped">
<thead>
<tr>
<th>Date</th>
<th>User</th>
<th>Message</th>
</tr>
</thead>
<tbody>
<% @mod_actions.each do |mod_action| %>
<tr>
<td><%= mod_action.created_at %></td>
<td><%= link_to mod_action.creator.name, user_path(mod_action.creator) %></td>
<td><%= format_text(mod_actiond.description) %></td>
</tr>
<% end %>
</tbody>
</table>
<%= sequential_paginator(@mod_actions) %>
</div>
</div>