Formatierung angepasst

This commit is contained in:
hubobel 2026-06-25 16:52:34 +02:00
parent fa1eccb805
commit 4fa554ed57

View file

@ -216,40 +216,41 @@
<table class="category-table"> <table class="category-table">
<tr> <tr>
<th>Script</th> <th>Script</th>
<th>Cron</th> <th>Cron</th>
<th>Aktion</th> <th style="text-align:right;">Aktion</th>
</tr> </tr>
<tr> <tr>
<td>balance.py</td> <td>balance.py</td>
<td>{{ cron_jobs.balance }}</td> <td>{{ cron_jobs.balance }}</td>
<td> <td style="text-align:right;">
<a href="/maintenance/run/balance"> <a href="/maintenance/run/balance">
<button>Jetzt ausführen</button> <button>Jetzt ausführen</button>
</a> </a>
</td> </td>
</tr> </tr>
<tr> <tr>
<td>transactions.py</td> <td>transactions.py</td>
<td>{{ cron_jobs.transactions }}</td> <td>{{ cron_jobs.transactions }}</td>
<td> <td style="text-align:right;">
<a href="/maintenance/run/transactions"> <a href="/maintenance/run/transactions">
<button>Jetzt ausführen</button> <button>Jetzt ausführen</button>
</a> </a>
</td> </td>
</tr> </tr>
<tr>
<td>categorize_transactions.py</td>
<td>{{ cron_jobs.categorize }}</td>
<td style="text-align:right;">
<a href="/maintenance/run/categorize">
<button>Jetzt ausführen</button>
</a>
</td>
</tr>
<tr>
<td>categorize_transactions.py</td>
<td>{{ cron_jobs.categorize }}</td>
<td>
<a href="/maintenance/run/categorize">
<button>Jetzt ausführen</button>
</a>
</td>
</tr>
</table> </table>