Clenaed up the server_details.html template.

This commit is contained in:
A. Svensson 2015-03-09 17:58:03 +01:00
parent 78ae35cd63
commit 9f5a99a9a0
2 changed files with 27 additions and 23 deletions

View File

@ -63,13 +63,17 @@ body {
padding-bottom: 40px;
}
#player_stats th{
width: 25%;
}
#weekly_history {
width:800px;
width:100%;
height:200px;
}
#weekday_averages {
width:800px;
width:100%;
height:200px;
}

View File

@ -16,35 +16,35 @@
{% endif %}
<h3>Players</h3>
<p>Last updated <span class="bold" title="{{server.last_updated|date:'r'}} GMT">
{{server.last_updated|timesince}}
</span>ago.</p>
<table class="table table-hover">
<tbody>
{% if server.players_current > 0 %}
<tr class="success">
{% else %}
<tr class="danger">
{% endif %}
<th>Current</th>
<th>{{server.players_current}}</th>
</tr>
<table id="player_stats" class="table table-hover">
<thead>
<tr>
<th>Currently online</th>
<th>Average</th>
<th>{{server.players_avg}}</th>
</tr>
<tr>
<th>Min</th>
<th>{{server.players_min}}</th>
</tr>
<tr>
<th>Max</th>
</tr>
</thead>
<tbody>
<tr>
{% if server.players_current > 0 %}
<th class="success">
{% else %}
<th class="danger">
{% endif %}
{{server.players_current}}
</th>
<th>{{server.players_avg}}</th>
<th>{{server.players_min}}</th>
<th>{{server.players_max}}</th>
</tr>
</table>
<h3>Players last week</h3>
<p>Last updated <span class="bold" title="{{server.last_updated|date:'r'}} GMT">
{{server.last_updated|timesince}}
</span>ago.</p>
<h3>Weekly history</h3>
<div id="weekly_history"></div>
<h3>Average per day</h3>
<div id="weekday_averages"></div>