This commit is contained in:
2026-02-16 10:44:39 +01:00
parent 6cbbfc4811
commit 36b54ea953
+11 -3
View File
@@ -533,9 +533,17 @@ function getDisplayLogic($spent, $bg, $type) {
<?php else: ?> <?php else: ?>
<td style="padding:10px 15px; text-align:right; font-weight:600; color:#1e293b;">-<?= number_format($exp['amount'], 2) ?></td> <td style="padding:10px 15px; text-align:right; font-weight:600; color:#1e293b;">-<?= number_format($exp['amount'], 2) ?></td>
<?php endif; ?> <?php endif; ?>
<td style="width:50px; padding-right:10px; text-align:right;"> <td style="width:60px; padding-right:10px; text-align:right; white-space:nowrap;">
<button onclick='openEditModal(<?= json_encode($exp) ?>)' style="background:none; border:none; cursor:pointer; font-size:1.1rem; margin-right:5px; color:#64748b;">✏️</button> <button onclick='openEditModal(<?= json_encode($exp) ?>)'
<a href="?tab=suivi&delete_expense=<?= $exp['id'] ?>" onclick="return confirm('x ?')" style="color:#ef4444; text-decoration:none; font-size:1.2rem;">&times;</a> style="background:none; border:none; padding:0; cursor:pointer; font-size:1rem; margin-right:8px; color:#64748b; line-height:1; vertical-align:middle;">
✏️
</button>
<a href="?tab=suivi&delete_expense=<?= $exp['id'] ?>"
onclick="return confirm('Supprimer ?')"
style="color:#ef4444; text-decoration:none; font-size:1.4rem; line-height:1; vertical-align:middle;">
&times;
</a>
</td> </td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>