creating filament tracking

This commit is contained in:
Janis Steiner
2024-10-14 14:57:08 +01:00
parent af29d88f3d
commit 0f9db35b48

View File

@@ -371,10 +371,11 @@ async function delete_input(input,action,id,row){
if (mysqli_stmt_num_rows($stmt) > 0) { if (mysqli_stmt_num_rows($stmt) > 0) {
while (mysqli_stmt_fetch($stmt)) { while (mysqli_stmt_fetch($stmt)) {
$real_usage=($usr_filament_usage/1000)
echo "<tr> echo "<tr>
<td>{$usr_id}</td> <td>{$usr_id}</td>
<td>{$usr_username}</td> <td>{$usr_username}</td>
<td>{$usr_filament_usage}</td> <td>{$real_usage} Meter</td>
<td><a href='debug.php?show=usr_fil_stats&reset={$usr_id}'>Zurücksetzen</a></td> <td><a href='debug.php?show=usr_fil_stats&reset={$usr_id}'>Zurücksetzen</a></td>
</tr>"; </tr>";
} }