trugul-bot/views/bossfight.erb

41 lines
1.3 KiB
Text

<div class="col-md-3">
<ul class="list-group">
<li class="list-group-item text-right">
<span class="pull-left"><strong>Target:</strong></span>
<%= @username %>
</li>
<li class="list-group-item text-right">
<span class="pull-left"><strong>Kill Date:</strong></span>
<%= @first_negative.created_at.strftime('%H:%M on %m-%d-%Y') if @first_negative %>
</li>
<li class="list-group-item text-right">
<span class="pull-left"><strong>Killing Blow:</strong></span>
<%= @first_negative.attacker if @first_negative %>
</li>
<li class="list-group-item text-right">
<span class="pull-left"><strong>Soliders Killed:</strong></span>
<%= readable_number(@soldiers_killed) if @soldiers_killed %>
</li>
</ul>
</div>
<div class="col-md-9">
<table class="table table-striped table-hover table-bordered table-condensed">
<thead>
<tr>
<td>Attacker</td>
<td>Attempts</td>
<td>Soldiers Killed</td>
</tr>
</thead>
<tbody>
<% @contributors.each do |contributor| %>
<tr>
<td><%= contributor[:username] %></td>
<td class="text-right"><%= contributor[:attacks] %></td>
<td class="text-right"><%= readable_number(contributor[:lost]) %></td>
</tr>
<% end %>
</tbody>
</table>
</div>