added missing files

This commit is contained in:
WatermelonModders
2022-06-01 10:02:43 -04:00
parent 8c8f77cf7a
commit 99585c067e
12 changed files with 1159 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
$def with (players)
<div style="margin-top:10px;float:left;background-color: rgba(0, 0, 0, 0.7);border-radius:25px;padding:15px;font-size:12pt;width:100%;height:450px;overflow-y:scroll;">
<div style="overflow:hidden;">
<div style="float:left;width:100px;">Player</div>
<div style="float:left;width:100px;">Wins</div>
<div style="float:left;width:100px;">Loses</div>
<div style="float:left;width:100px;">Win Rate</div>
</div>
$for p in players:
<div style="overflow:hidden;">
<div style="float:left;width:100px;">$p[0]</div>
<div style="float:left;width:100px;">$p[1]</div>
<div style="float:left;width:100px;">$p[2]</div>
<div style="float:left;width:100px;">$(p[3])%</div>
</div>
</div>