forked from rDrama/rDrama
1
0
Fork 0

just remove it because lb is being retarded

master
justcool393 2022-11-27 14:06:18 -06:00
parent 27a8303056
commit 92a284f72c
1 changed files with 0 additions and 2 deletions

View File

@ -10,7 +10,6 @@
<th onclick="sort_table(1)">Name</th> <th onclick="sort_table(1)">Name</th>
<th onclick="sort_table(2)">Wins</th> <th onclick="sort_table(2)">Wins</th>
<th onclick="sort_table(3)">Bets</th> <th onclick="sort_table(3)">Bets</th>
<th onclick="sort_table(4)">Wins/Bets Ratio</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -20,7 +19,6 @@
<td data-sort-key="{{user.username.lower() if user else ''}}">{%- include 'user_in_table.html' -%}</td> <td data-sort-key="{{user.username.lower() if user else ''}}">{%- include 'user_in_table.html' -%}</td>
<td>{{r[2]}}</td> <td>{{r[2]}}</td>
<td>{{r[1]}}</td> <td>{{r[1]}}</td>
<td>{{"%" | format(r[2] / r[1]|float)}}</td>
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>