trugul-bot/views/index.erb

24 lines
590 B
Text

<h2>Index</h2>
<table class="table table-striped table-hover table-bordered table-condensed">
<thead>
<tr>
<td>Attacker</td>
<td>Defender</td>
<td>Soldiers</td>
<td>Money</td>
<td>Time</td>
</tr>
</thead>
<tbody>
<% @raids.each do |raid| %>
<tr>
<td><%= raid.attacker %></td>
<td><%= raid.defender %></td>
<td class="text-right"><%= readable_number(raid.soldiers) %></td>
<td class="text-right"><%= readable_number(raid.money) %></td>
<td><%= raid.created_at %></td>
</tr>
<% end %>
</tbody>
</table>