Files
rust-rcon/html/playerXp.html
T
2016-06-08 20:14:35 +02:00

42 lines
975 B
HTML

<div ng-controller="PlayerXpController" id="PlayerXpController">
<div class="row">
<div class="col-md-12">
<h2>
Statistics for player: <a href="#/{{address}}/player/{{userid}}/">{{userid}}</a>
</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3>Xp Income Sources</h3>
<h5>Where has this user got their Xp from</h5>
<div class="panel">
<nvd3 options="Sources.Options" data="Sources.Data"></nvd3>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3>Xp Outgoing Sources</h3>
<h5>Where has this user spent their Xp</h5>
<div class="panel">
<nvd3 flex options="Outgoings.Options" data="Outgoings.Data"></nvd3>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3>Xp Over Time</h3>
<h5>How much XP has this user got over time</h5>
<div class="panel">
<nvd3 flex options="OverTime.Options" data="OverTime.Data"></nvd3>
</div>
</div>
</div>
</div>